Matlab: what is the right 3D plotting function for my code?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
Romik
Messages
13
Reaction score
0
Hi all, I have a simple question about 3D plotting.

Consider this simple loop, which provides y and O for any x. and I am able to plot y vs O for given x.

for Omega=0:.01:5

y(i)=(x*Omega^2);

O(i)=Omega;

i=i+1;

end

now consider I want to change the value of x, for x=0:.1:3 and plot the group of y's and O's in one plot.(y~O~x) which one of the 3D plot functions are right for this purpose and what will be the code?

I would appreciate you time and help,

Romik
 
Physics news on Phys.org
You'll probably want to use meshgrid and surf. Something like:
Code:
x = linspace[/color](0, 3, 100);
omega = linspace[/color](0, 5, 100);
[X Omega] = meshgrid[/color](x, omega);
Y = X .*[/color] Omega .^[/color]2;
surf(X, Y, Omega); [i]% Or whatever order you want to plot...[/i][/color]
 
Last edited: