MATLAB: Display of amplitude and time at each point in a range of a signal in simulink

display

I want a plot/scope/graph where I can display the y-value at those x-values that i specify? Can anyone help me with this please?

Best Answer

Create a m-file s-function, in which you can collect the Y values at your X values and plot it on figure.
--OR--
Save the X & Y values to base worksapce using 'To Workspace' block and write m-script to plot them.
Related Question