plot3 out of loop

4 views (last 30 days)
Oday Shahadh
Oday Shahadh on 9 Jun 2020
Commented: Oday Shahadh on 10 Jun 2020
Can you please fix empty plot in below script
clear
close all
format long
theta=0:10:360;
rho=0:.5:2;
L=-2:0.5:2;
X= cell(3,1) ; Y= cell(3,1);Z = cell(3,1) ;
for i=1:length(L)
for j=1:length(rho);
for k=1:length(theta);
[x,y,z]=pol2cart(theta(k),rho(j),L(i));
X{i} = x ; Y{i} = y ; Z{i} = z ;
end
end
end
figure(1)
hold on
plot3(X,Y,Z)

Accepted Answer

David Hill
David Hill on 9 Jun 2020
clear;
theta=0:10:360;
rho=0:.5:2;
L=-2:0.5:2;
[a,b,c]=meshgrid(theta,rho,L);
[x,y,z]=pol2cart(a,b,c);
plot3(x(:),y(:),z(:));
  3 Comments
David Hill
David Hill on 10 Jun 2020
It just converts x matrix into a column vector (reshaping to 1 dimension)
Oday Shahadh
Oday Shahadh on 10 Jun 2020
Very good job David
Can I ask another thing pls?

Sign in to comment.

More Answers (1)

Adam Danz
Adam Danz on 9 Jun 2020
A critical missing bit of information is missing from your questions. An error is thrown by the last line in your quesiton.
Error using plot3
Not enough input arguments.
This is because your plot3() inputs are cell arrays. It looks like your loops produce scalar values on each iteration so those values can be stored within a numeric array which will be much easier to use.
Your loops were overwriting the x,y,z values on each iteration of the j and k loops. The method below will store those values but it's up to you to make sure this makes sense in the context of whatever you're doing.
theta=0:10:360;
rho=0:.5:2;
L=-2:0.5:2;
% Numeric arrays, not cell arrays
% Also, preallocation to the correct size
X = nan(length(L), length(rho), length(theta)) ;
Y = X;
Z = X;
for i=1:length(L)
for j=1:length(rho)
for k=1:length(theta)
[x,y,z]=pol2cart(theta(k),rho(j),L(i));
X(i,j,k) = x ; Y(i,j,k) = y ; Z(i,j,k) = z ; % Store all of the value
end
end
end
As for plotting, it's not clear how you would like to use these values. plot3() creates a 2D plot but the inputs cannot have more than 2 dimensions and the x y z values above have 3 dimensions.

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!