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

4 vues (au cours des 30 derniers jours)
SAMET YILDIZ
SAMET YILDIZ le 30 Nov 2016
Commenté : SAMET YILDIZ le 1 Déc 2016
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 ?

Réponse acceptée

KSSV
KSSV le 1 Déc 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 commentaire
SAMET YILDIZ
SAMET YILDIZ le 1 Déc 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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by