Borrar filtros
Borrar filtros

3d polar plot of vectors in cartesian coordinates

2 visualizaciones (últimos 30 días)
Ashbub
Ashbub el 26 de Dic. de 2017
Comentada: Ashbub el 26 de Dic. de 2017
Hi, I have numerous 3D vectors (x, y and z coordinate for each) in excel file as columns. I want to draw a 3dpolarplot like polarhistogram in 2D in Matlab. Don't know how to do it. I am not a frequent user of Matlab. Can anyone give any suggestion? Thanks in advance.

Respuesta aceptada

KSSV
KSSV el 26 de Dic. de 2017
[num,txt,raw] = xlsread(filename) ;
x = num(:,1) ;
y = num(:,2) ;
z = num(:,3) ;
Now, you can use x,y,z for plotting. Have a look on scatter, plot3, etc.
  3 comentarios
Ashbub
Ashbub el 26 de Dic. de 2017
Thankyou.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Polar Plots 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!

Translated by