how to plot 3d oval shape with 81 nodes
Mostrar comentarios más antiguos
how to plot 3d oval shape in matlab
Respuestas (1)
An "oval" is a loose term. If you mean an ellipsoid, then you could use this FEX download,
[eCenter,eABC,eYPR]=deal([0 2 1] , [3 2 1], [20 30 0]); %Ellipsoid parameters
gtEllip=ellipsoidalFit.groundtruth([],eCenter,eABC,eYPR);
plot(gtEllip, {'FaceColor', 'm'});

Categorías
Más información sobre Statistics and Machine Learning Toolbox en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!