How to determine maximum amplitude in a graph
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Ameer Hamza
am 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.
Antworten (1)
Ameer Hamza
am 23 Apr. 2018
Bearbeitet: Ameer Hamza
am 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
0 Kommentare
Siehe auch
Kategorien
Mehr zu Line Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!