How to make 3d graph from a 2d graph based on the 360 degree

3 visualizzazioni (ultimi 30 giorni)
Hi all, I want to convert a simple x&y-axis 2D plot rotating around 360 degree around the 3rd dimension, let say z-axis, and form a volume like representation. The example should be like this:
x = 0:5:50; y = 100:-10:0; plot(x,y)
% I want the same graph with different y values within the interval 0:45:360 which would be represented around z-axis. How can I do this ?

Risposta accettata

KSSV
KSSV il 1 Dic 2016
clc; clear all ;
x = 0:5:50;
y = 100:-10:0;
pts = [x;y] ;
plot(x,y)
th = pi/180*[0:45:360] ;
for i = 1:length(th)
% rotation matrix
R = [cos(th(i)) sin(th(i)) ; -sin(th(i)) cos(th(i))] ;
ptsr = zeros(size(pts)) ;
for j = 1:length(x)
ptsr(:,j) = R*pts(:,j) ;
end
hold on
plot(ptsr(1,:),ptsr(2,:))
end
  1 Commento
SAMET YILDIZ
SAMET YILDIZ il 1 Dic 2016
Thanks for the answer. I accepted it because your answer provides a solution what was written by me in the first place. However, my intention was to ask the question "rotation around the z-axis". I put it as 3d-graph to title, yet not on the question content. My mistake.
I edited my question. The edits are written with bold face. Thanks again.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by