Matlab 3D graphing (graph slicing)?
Ältere Kommentare anzeigen
How can I "plot the function d=x*y*e^(-sqrt(x^2+y^2+x^2)) along the x=y diagonal"? Do I use the "contourslice" command? How? Thanks.
1 Kommentar
Patrick Kalita
am 29 Jan. 2013
Did you mean d=x*y*e^(-sqrt(x^2+y^2+z^2))? Your original question has two x^2 terms in the sqrt.
Antworten (1)
Azzi Abdelmalek
am 27 Jan. 2013
X=1:10
y=x
z=cos(x+y) % use your function
Plot3(x,y,z)
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!