How do i plot multiple vectors tip to tail, beginning from the origin?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
William Warren
el 26 de Oct. de 2015
Editada: William Warren
el 26 de Oct. de 2015
This is my code thus far, but my figure only runs the plot for the variables as they are. I need them to run sequentially, so that they are connected tip to tail, forming one line that begins at the origin.
vectors = xlsread('Book1.xlsx'); %Enter any .xlsx document here
[M,N] = size(vectors);
hold on
x = (vectors(:,1).*cosd(vectors(:,2)));
y = (vectors(:,1).*sind(vectors(:,2)));
plot(x,y);
0 comentarios
Respuesta aceptada
Stefan Raab
el 26 de Oct. de 2015
x = (vectors(:,1).*cosd(vectors(:,2)));
y = (vectors(:,1).*sind(vectors(:,2)));
plot([0; x; 0],[0; y; 0]);
Is this what you need?
1 comentario
William Warren
el 26 de Oct. de 2015
Editada: William Warren
el 26 de Oct. de 2015
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!