plot3 out of loop
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Oday Shahadh
am 9 Jun. 2020
Kommentiert: Oday Shahadh
am 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)
0 Kommentare
Akzeptierte Antwort
David Hill
am 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 Kommentare
David Hill
am 10 Jun. 2020
It just converts x matrix into a column vector (reshaping to 1 dimension)
Weitere Antworten (1)
Adam Danz
am 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.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Detection finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!