Help me about sphere ?
1 回表示 (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/163419/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/163420/image.jpeg)
I have this code to draw haft of sphere x^2 + y^2 + z^2 = 1, z>0. but it have error. help me to fix it. thanks very much.
0 件のコメント
回答 (1 件)
Mischa Kim
2014 年 5 月 27 日
編集済み: Mischa Kim
2014 年 5 月 27 日
Nguyen, use instead
z = real(sqrt(1 - x.^2 - y.^2));
to retain the real part only.
3 件のコメント
Mischa Kim
2014 年 5 月 27 日
編集済み: Mischa Kim
2014 年 5 月 27 日
In a perfect world, yes. However, in numerical computations zero is not always (exactly) equal to zero. Check out this answer for reference. If you remove the semi-colon from
z = sqrt(1 - x.^2 - y.^2)
you'll notice that there are small non-zero imaginary parts.
参考
カテゴリ
Help Center および File Exchange で Surface and Mesh Plots についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!