How to determine maximum amplitude in a graph

4 views (last 30 days)
My question is quite strange: let's say that I have a 2D graph with multiple plots in it. Every plots do not diverge, so it has a local maximum. In my code I do not track the data of each plot, but I would like to know the highest point of all the plots (I think that matlab detect it for the purpose of automaticly setting the axis limit).
How can I do it?
Real problem notes: I'm working on a 3d graphs with hundreds of spheres on it and I need to know the max(Z).
Thanks, Jacopo
  3 Comments
Jacopo Remondina
Jacopo Remondina on 23 Apr 2018

Following your suggestion, the "best" code I could get is:

axes=gca;
childrenNum=numel(axes.Children);
maximum=-inf;
minimum=+inf;
for i=1:childrenNum
  ZValues=obj.OWE{2}.Children(i).ZData;
  maximum=max(maximum,max(max(ZValues)));
  minimum=max(minimum,min(min(ZValues)));
end

[cannot directly get the maximum from both a cell array (the childrens) and a numeric array (the ZData values)]

I think that this code is quite inneficient both in term of readability and performance, so, maybe, there is a simplier/faster way to obtain the same result.

Anyway, thank Ameer for your suggestion

Ameer Hamza
Ameer Hamza on 23 Apr 2018

It appears that the graphics primitive is a surface containing a lot of points. If you are really concerned about speed, avoid making a copy of the data with

ZValues=obj.OWE{2}.Children(i).ZData;

You can refer to my answer to do it more compactly.

Sign in to comment.

Answers (1)

Ameer Hamza
Ameer Hamza on 23 Apr 2018
Edited: Ameer Hamza on 23 Apr 2018
The graphics primitive handle contain the XData, YData, ZData and, depending on the type of graphics primitive, and additional CData property. If the figure is already plotted, set it as the active figure by clicking on it and then you using following statements,
f = gcf;
a = f.Children;
graphic_primitives = a.Children; % or you can skip 2nd statement and directly use f.Children.Children
graphic_primitives will be an array, containing handles for all the graphics in your figure. You can then loop through these graphics objects as given in this comment to get the minimum value.
for i=graphic_primitives'
maximum = max(maximum, max(max(i.ZData)));
minimum = min(minimum, min(min(i.ZData)));
end

Categories

Find more on Line Plots in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!