Borrar filtros
Borrar filtros

How to make a polar plot function curve and not rigid?

2 visualizaciones (últimos 30 días)
Christian Jaramillo
Christian Jaramillo el 13 de Sept. de 2018
Comentada: Walter Roberson el 14 de Sept. de 2018
Hello,
I'm not sure why but when I polarplot the graph is very rigid. does anyone know how to change it? I attached a picture and below is what i'm using;
theta = 0*pi: 0.1*pi: 2*pi;
r = 5*cos(4*theta);
polarplot(theta, r)

Respuestas (1)

Amir Xz
Amir Xz el 13 de Sept. de 2018
Steps are so large.
theta = 0*pi: 0.01: 2*pi;
  2 comentarios
Christian Jaramillo
Christian Jaramillo el 14 de Sept. de 2018
According to the textbook MatLab for Engineers, that's the array provided
Walter Roberson
Walter Roberson el 14 de Sept. de 2018
0*pi: 0.1*pi: 2*pi is only 21 points, and it needs to cover all 8 nodes in that, so it averages less than 3 points per node. You need to use samples that are closer together, or else you need to interpolate between those 21 points (which could give you a quite misleading idea of what the curve looks like.)

Iniciar sesión para comentar.

Categorías

Más información sobre Polar Plots en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by