Plotting the function on a Sphere?

Let me explain, what I'm actually solving.
I'm solving Diffusion-Reaction equation(3D) in spherical coordinates.
I'm solving this equation numerically. So at the end I'm getting , r, θ, ϕ.
So I want to plot this function on a sphere( - plane) instead of palne
Can anyone help in this regard?
Thanks in advance.

回答 (1 件)

KSSV
KSSV 2022 年 8 月 17 日
編集済み: KSSV 2022 年 8 月 17 日

0 投票

r = 1 ;
th = linspace(0,2*pi) ;
phi = linspace(0,pi) ;
[T,P] = meshgrid(th,phi) ;
X = r*cos(T).*sin(P) ;
Y = r*sin(T).*sin(P) ;
Z = r*cos(P) ;
surf(X,Y,Z)
axis equal

2 件のコメント

Jagadeesh Korukonda
Jagadeesh Korukonda 2022 年 8 月 22 日
But where we plot C?
Torsten
Torsten 2022 年 8 月 22 日
What do you think: why does the surface of the sphere have different colors ?

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

カテゴリ

製品

リリース

R2022a

質問済み:

2022 年 8 月 17 日

コメント済み:

2022 年 8 月 22 日

Community Treasure Hunt

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

Start Hunting!

Translated by