Creating Polar mesh in matlab

178 Ansichten (letzte 30 Tage)
Reza Lashani
Reza Lashani am 13 Jan. 2021
Bearbeitet: Reza Lashani am 13 Jan. 2021
I want to plot a surface z = f(x,y) and it is desired to plot it on a circle surface. Is it possible in matlab or can create polar mesh on matlab?

Akzeptierte Antwort

David Goodmanson
David Goodmanson am 13 Jan. 2021
Bearbeitet: David Goodmanson am 13 Jan. 2021
Hi Reza,
% make a rectangular grid of r and theta,
% then define x and y in the usual way
rr = 0:1:20;
thth = (0:.05:1)*2*pi;
[r th] = meshgrid(rr,thth);
x = r.*cos(th);
y = r.*sin(th);
z = 1 + x.^2 - y.^2;
surf(x,y,z)
  1 Kommentar
Reza Lashani
Reza Lashani am 13 Jan. 2021
Bearbeitet: Reza Lashani am 13 Jan. 2021
Thanks david. It helped me so much.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Cris LaPierre
Cris LaPierre am 13 Jan. 2021
See this answer on how to do this using a rectangular matrix
See this blog post for how to do this with polar coordinates.
  1 Kommentar
Reza Lashani
Reza Lashani am 13 Jan. 2021
Bearbeitet: Reza Lashani am 13 Jan. 2021
Thank you cris. These articles was very useful to me.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by