Prev: Why can i nnable to connect with Lecroy Oscillopcopes?
Next: convert image from webcam from rgb to grayscale in real time!
From: FAISAL PEER MOAHMED on 27 Apr 2010 11:02 Hi I am trying to plot a high frequency data which is sampled using 100 MS/s. Rise time of these pulses will be of the order tens of nano seconds. Matlab plot has only four figures after the decimel point. So I could not able to read from the plot.Is there any way to increase the digits after the decimal point ? Regards Faisal
From: Walter Roberson on 27 Apr 2010 11:24
FAISAL PEER MOAHMED wrote: > I am trying to plot a high frequency data which is sampled using 100 > MS/s. Rise time of these pulses will be of the order tens of nano > seconds. Matlab plot has only four figures after the decimel point. So I > could not able to read from the plot.Is there any way to increase the > digits after the decimal point ? set(gca, 'YTickLabel', num2str(get(gca, 'YTick'), '%.8f')); You might need a transpose() around the get() call. |