Plotting the function on a Sphere?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Let me explain, what I'm actually solving.
I'm solving Diffusion-Reaction equation(3D) in spherical coordinates.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1104510/image.png)
I'm solving this equation numerically. So at the end I'm getting
, r, θ, ϕ.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1100050/image.png)
So I want to plot this function
on a sphere(
- plane) instead of
palne
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1100050/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1100060/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1100065/image.png)
Can anyone help in this regard?
Thanks in advance.
0 commentaires
Réponses (1)
KSSV
le 17 Août 2022
Modifié(e) : KSSV
le 17 Août 2022
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 commentaires
Torsten
le 22 Août 2022
What do you think: why does the surface of the sphere have different colors ?
Voir également
Catégories
En savoir plus sur Surface and Mesh Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!