How to plot many circle in 3D from array radius and different height?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nanthanon Visitpongaree
el 2 de Nov. de 2018
Editada: Nanthanon Visitpongaree
el 4 de Nov. de 2018
I have no idea about doing this. I did try so many ways.
4 comentarios
Respuesta aceptada
KSSV
el 2 de Nov. de 2018
Editada: KSSV
el 2 de Nov. de 2018
[num,txt,raw] = xlsread('32 coils Parameters.xlsx') ;
th = linspace(0,2*pi) ;
x = cos(th) ;
y = sin(th) ;
figure
hold on
for i = 1:size(num) ;
xc = num(i,2)*x ;
yc = num(i,2)*y ;
zc = repmat(num(i,3),1,100) ;
plot3(xc,yc,zc)
end
view(3)
axis equal
7 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre 2-D and 3-D 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!



