Clear Filters
Clear Filters

How to find the maximum value of the 3-D plot in matlab?

46 views (last 30 days)
How to find the maximum value of the 3-D plot in matlab? At present ,I am clicking with the help of Cursor after the generation of the 3-D plot . But is there any specific command for that? I have tried max(abs(figure)), but that generates an array and not a particular single value, I am in need to find the maximum single amplitude value of the plot. Kindly help

Accepted Answer

Star Strider
Star Strider on 15 Feb 2016
If your plot is for instance:
figure(1)
surf(X, Y, Z)
where all are matrices, convert ‘Z’ to a vector and then take the max:
Zmax = max(Z(:));
If you want to know where the maximum occurs, this will give you the indices:
[Zmax,Idx] = max(Z(:));
[ZmaxRow,ZmaxCol] = ind2sub(size(Z), Idx);
  12 Comments
Abhay
Abhay on 23 Feb 2016
Respected Sir, I have a Mat-lab generated figure which I saved in jpg , its dpi value is 96, I have to change its dpi value to 300. Can you please help me? Regards, Abhay
Star Strider
Star Strider on 23 Feb 2016
See the documentation for print and saveas for details on how to do that.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!