フィルターのクリア

Is the z-axis in a Sphere only positive?

2 ビュー (過去 30 日間)
민제 강
민제 강 2022 年 9 月 5 日
コメント済み: Chunru 2022 年 9 月 5 日
[X, Y, Z] = sphere(10);
Points = [X(:), Y(:), Z(:)].';
plot3(Points(1,:), Points(2,:), Points(3,:), 'x');
I want to get points by representing only the positive z-axis.

採用された回答

Chunru
Chunru 2022 年 9 月 5 日
編集済み: Chunru 2022 年 9 月 5 日
No. It consists of both positive and negative parts.
[X, Y, Z] = sphere(100);
Points = [X(:), Y(:), Z(:)].';
%plot3(Points(1,:), Points(2,:), Points(3,:), 'x');
surf(X, Y, Z)
whos
Name Size Bytes Class Attributes Points 3x10201 244824 double X 101x101 81608 double Y 101x101 81608 double Z 101x101 81608 double cmdout 1x33 66 char
figure
idx = 51:101;
surf(X(idx, :), Y(idx, :), Z(idx, :))
  2 件のコメント
민제 강
민제 강 2022 年 9 月 5 日
So, I want to make it a hemisphere with only positive values on the z-axis.
Chunru
Chunru 2022 年 9 月 5 日
See the update.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGamma Functions についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by