From: FAISAL PEER MOAHMED on
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
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.