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

4 次查看(过去 30 天)
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 ?

采纳的回答

KSSV
KSSV 2016-12-1
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 个评论
SAMET YILDIZ
SAMET YILDIZ 2016-12-1
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 2-D and 3-D Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by