How to determine maximum amplitude in a graph
3 次查看(过去 30 天)
显示 更早的评论
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 个评论
Ameer Hamza
2018-4-23
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.
回答(1 个)
Ameer Hamza
2018-4-23
编辑:Ameer Hamza
2018-4-23
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!