How do I the minimum points on a 3D surface diagram (x,y,z) as a function of the x and y variables?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Alex Bregazzi
am 14 Dez. 2019
Kommentiert: Alex Bregazzi
am 15 Dez. 2019
Here I have plotted an energy surface diagram:
clc, clear;
%x=phi, y=theta, z=h
K=1;
hval = 2*pi;
y=pi/3;
[ x, z] = meshgrid(0:0.1:hval, -2:0.1:2);
E= (K*sin(x-y).^2)-K*z.*cos(x);
figure
surf(x, z, E)
xlabel('phi')
ylabel('h')
zlabel('E')
rotate3d on
cos(0)
sin(-y)
F= (K*sin(0-y).^2)-K*z.*cos(0);
I need to obtain the minimum energy points on this diagram as a function of phi and h to plot another graph. My thought was to create for loops which go through each value of phi to find the minimum energy and return the value of h, but I haven't been able to do this.
0 Kommentare
Akzeptierte Antwort
Ridwan Alam
am 14 Dez. 2019
Bearbeitet: Ridwan Alam
am 14 Dez. 2019
I am assuming your x-axis is phi and y-axis is h:
min_phi = min(E,[],1);
min_h = min(E,[],2);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Surface and Mesh 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!