Angles to arrow representation

6 visualizaciones (últimos 30 días)
Kalyan Samala
Kalyan Samala el 19 de Nov. de 2020
Comentada: KSSV el 19 de Nov. de 2020
I have attached an Excel sheet which includes angles ranging from 0-90 degrees. I want the arrow representation for those values.
Thank you.
  1 comentario
KSSV
KSSV el 19 de Nov. de 2020
You need to have radius along with theta. Than you can use quiver to plot the arrows.

Iniciar sesión para comentar.

Respuesta aceptada

KALYAN ACHARJYA
KALYAN ACHARJYA el 19 de Nov. de 2020
data=xlsread('New Microsoft Excel Worksheet.xlsx');
l=0.5; % Length of the arrow
for i=1:6
for j=1:6
angle=data(i,j);
u=l*cos(angle); % convert polar (theta,r) to cartesian
v=l* sin(angle);
quiver(i,j,u,v,'linewidth',1.5);
hold on;
end
end
grid on;
May be other smart ways also to do the same

Más respuestas (0)

Categorías

Más información sobre Vector Fields 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