How to plot this function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi Im a beginner and tried plotting the following function, Z, but it does not seem to work. Can anyone help me?
x=0:10:200;
y=0:0.05:1;
[X,Y]=meshgrid(x,y);
Z=(-0.5)*x.*(x+1)*(x-1)*((y.^x./x)-(2*(y.^(x-1))./(x-1))+(y.^(x-2))/(x-2)-2/(x.*(x-1)*(x-2)));
surf(X,Y,Z)
0 Kommentare
Akzeptierte Antwort
Matt Fig
am 14 Mär. 2011
Try this instead:
x=0:10:200;
y=0:0.05:1;
[X,Y]=meshgrid(x,y);
Z=(-0.5)*X.*(X+1).*(X-1).*((Y.^X./X)-(2*(Y.^(X-1))./(X-1))+(Y.^(X-2))./(X-2)-2./(X.*(X-1).*(X-2)));
surf(X,Y,Z)
rotate3d on
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D 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!