Hello
I have a plot that looks like this http://s16.postimage.org/6emj8t791/3d_plot.jpg
Now i want a mat like surface not this peak ,I like a just surface plot though I have used surfc command but getting this peak style image ..which command shal I use?
No products are associated with this question.
I am confused about what you are looking for. See
mesh() contour() meshc(); surf()
hiee walter
I want that my surface olot shoulkd look like this http://cp.home.agilent.com/upload/cmc_upload/matlab_TOI_plot.bmp but I am getting those peak like image not only surface ..what command should I use
Your data has local differences that are large compared to the difference in range between the lowest and highest value, whereas the image you show as ideal has only small local differences compared to the range between the lowest and highest value.
With the relative data values you happen to have, the cost of getting rid of the peaks will be flattening out your surface plot to very nearly flat. If that is your goal, you might as well use pcolor().
If you do not want to do that, then zlimit to change the upper bound of plotting to be a number of times larger, which will have the effect of having the actual data occupy a smaller portion of the plot, with the result that the peaks will be less prominent.
0 Comments