'Matrix dimensions must agree' error.

14 Ansichten (letzte 30 Tage)
Furkan Yürümez
Furkan Yürümez am 20 Mai 2020
% Hello guys, I am trying to do this problem, but ı get matrix dimensions must agree error. Can you please help me with that?
p=1.225;
p2=[1.225;0.7364;0.4135];
g=9.81;
s=845;
cd0=0.0163;
ar=7.53;
e=0.74;
k=1/(pi*e*ar);
w=540000*g;
clmax=2.6;
v_stall=sqrt((2*w)/(p2*s*clmax));
v=v_stall:700;
D0=0.5*p2*v.^2*s*cd0;
Di=(2*k*w^2)./(p2*v.^2*s);
D=D0+Di;
P=D.*v;

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 20 Mai 2020
p = 1.225;
p2 = [1.225; 0.7364; 0.4135];
num_p2 = length(p2);
g = 9.81;
s = 845;
cd0 = 0.0163;
ar = 7.53;
e = 0.74;
k = 1/(pi*e*ar);
w = 540000*g;
clmax = 2.6;
v_stall = sqrt((2*w)./(p2*s*clmax));
v = cell(num_p2, 1);
P = cell(num_p2, 1);
for K = 1 : num_p2
v{K} = v_stall(K) : 700;
D0 = 0.5 * p2(K) .* v{K}.^2 .*s .* cd0;
Di = (2 .* k .* w.^2) ./ (p2(K) .* v{K}.^2*s);
D = D0 + Di;
P{K} = D .* v{K};
end
temp = [v,P].';
plot(temp{:});
legend( string(p2) );

Weitere Antworten (0)

Kategorien

Mehr zu Networks finden Sie in Help Center und File Exchange

Produkte


Version

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by