how to plot 3d oval shape with 81 nodes
Afficher commentaires plus anciens
how to plot 3d oval shape in matlab
Réponses (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'});

Catégories
En savoir plus sur Statistics and Machine Learning Toolbox dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!