plotting sphere and rectangle mesh

 採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 6 月 23 日
編集済み: Azzi Abdelmalek 2015 年 6 月 23 日

0 投票

sphere(20)
axis square
You can get the coordinates x,y and z
[x,y,z]=sphere(20)
You can plot a sphere
surf(x,y,z)

4 件のコメント

cob
cob 2015 年 6 月 23 日
thank but it is not the same figure.
cob
cob 2015 年 6 月 23 日
i do know ho to plot the sphere , i dont know how to plot this black square inside this sphere
Azzi Abdelmalek
Azzi Abdelmalek 2015 年 6 月 23 日
編集済み: Azzi Abdelmalek 2015 年 6 月 23 日
ii=-1:0.1:1
jj=-1:0.1:1
[ii1,jj1]=meshgrid(ii,jj)
surf(ii,jj,zeros(size(ii1)))
hold on
sphere(20)
cob
cob 2015 年 6 月 23 日
編集済み: cob 2015 年 6 月 23 日
Thanks a lot , i did a little modification base on your code : x = -2:0.1:2;
y = -2:0.1:2;
[X,Y] = meshgrid(x,y);
surf(x,y,zeros(size(X)),'Facecolor','black');
hold on
sphere(25);
axis square
legend('the square',' the ball of 20','Location','SouthWest');

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

その他の回答 (0 件)

カテゴリ

質問済み:

cob
2015 年 6 月 23 日

編集済み:

cob
2015 年 6 月 23 日

Community Treasure Hunt

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

Start Hunting!

Translated by