Ellipsoid plot_ wireframe view

1 回表示 (過去 30 日間)
Vikas Saroha
Vikas Saroha 2019 年 8 月 26 日
コメント済み: Vikas Saroha 2019 年 8 月 26 日
Hello, I have plotted ellipsoids using 'surf' command at some fixed points. It looks like solid. But i want to see three axis of it as shown in figure attached. Please suggest.
  1 件のコメント
darova
darova 2019 年 8 月 26 日
Draw additional lines using plot3()?

サインインしてコメントする。

採用された回答

Bruno Luong
Bruno Luong 2019 年 8 月 26 日
編集済み: Bruno Luong 2019 年 8 月 26 日
[Q,~] = qr(randn(3));
h = rand(3,1);
h1 = h(1);
h2 = h(2);
h3 = h(3);
% If your principal axis are (3x1) P1, P2, P3 and half length are (scalars) h1, h2, h3
% Q = [P1(:), P2(:), P3(:)];
Q = Q .* ([h1, h2, h3]./sqrt(sum(Q.^2,1)));
n = 21;
[x,y,z]=sphere(n);
xyz = Q*[x(:) y(:) z(:)]';
x = reshape(xyz(1,:),[n n]+1);
y = reshape(xyz(2,:),[n n]+1);
z = reshape(xyz(3,:),[n n]+1);
close all
hold on
surf(x,y,z,'EdgeColor',0.6+[0 0 0],'FaceColor','none');
for k=1:3
plot3([0 Q(1,k)],[0 Q(2,k)],[0 Q(3,k)],'r','LineWidth',2);
end
axis equal
This is a slight modification of my answer in this thread
  3 件のコメント
Bruno Luong
Bruno Luong 2019 年 8 月 26 日
Error occuring or not depends on your MATLAB version, this command is correct for R2016b and later.
If you use previous you should replace with
Q = bsxfun(@times, Q, ([h1, h2, h3]./sqrt(sum(Q.^2,1))))
Vikas Saroha
Vikas Saroha 2019 年 8 月 26 日
thanks for your prompt reply. Its working.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by