Hello, I have a problem with for loops and plotting the lines.

3 visualizaciones (últimos 30 días)
Daniil Rulev
Daniil Rulev el 27 de En. de 2016
Respondida: Naga el 23 de Oct. de 2024
Good afternoon colleques,
I have a question, I need to plot 181 lines from +90° to -90° using for loop. I have tried this (but it seems to be wrong):
for i=0:1:181 angle=i; for k=1:200
x2(k)=k*cos(angle);
x1(k)=0;
y1(k)=0;
y2(k)=k*sin(angle);
plot(x1,y1,x2,y2)
end
end
As a results it plots only one line, instead of 181 on different angles.
Looking forward to your answers and suggestions and thank you in advance.

Respuestas (1)

Naga
Naga el 23 de Oct. de 2024
Hello Daniil,
To plot 181 lines from +90° to -90° using a for loop, you can use the following code. It calculates the starting and ending points of each line based on the angles, then plots them on the same graph. The hold on command ensures all lines are displayed together. Here’s the code:
angles = 90:-1:-90;
linecoord = [0, 1];
for angle = angles
x = cosd(angle) * linecoord;
y = sind(angle) * linecoord;
plot(x, y);
hold on;
end

Categorías

Más información sobre Graphics Performance 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