Can anyone help me in this code? Only the first radius value is being taken everytime, its not getting incremented..... what change i have to do?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
L K
el 19 de Nov. de 2016
Comentada: L K
el 24 de Nov. de 2016
load data
theta=data(:,1);
radius=data(:,2);
t=length(radius);
for i=1:1:t;
%rho = radius(i)*ones(size(theta)) ;
rho(i)=radius(i);
%theta=theta(i);
end
for i=1:1:t;
rho = rho(i)*ones(size(theta)) ;
polar(theta,rho,'*')
end
2 comentarios
Respuesta aceptada
Walter Roberson
el 19 de Nov. de 2016
You need
hold on
Inside the loop
5 comentarios
Walter Roberson
el 21 de Nov. de 2016
load data
theta = data(:,1);
radius = data(:,2);
rho = radius %just for display, not needed for computing
polar(theta, radius, '*')
Más respuestas (0)
Ver también
Categorías
Más información sobre Annotations en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!