how to plot ellipsoid in 3d not in the center
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Dear all,
I want to plot ellipsoid in 3dim not in the origin, what I should use , mesh or surf or plot3.
regards
Antworten (1)
Youssef Khmou
am 14 Sep. 2014
For surface representation, you can use meshgrid to generate the ellipsoid with parameterization :
a=5;
b=3;
c=1;
[u,v]=meshgrid(-pi/2:0.1:pi/2,linspace(-pi,pi,length(u)));
x=a*cos(u).*cos(v);
y=b*cos(u).*sin(v);
z=c*sin(u);
figure; surf(x,y,z);
title(' Ellipsoid');
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/175640/image.bmp)
0 Kommentare
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!