上段右辺のインデックス付けされているclaやcd、clは56×41のデータがそれぞれ入っておりそのほかの文字は定数値です。c11~c33などはA,B行列の各要素でありc21以降は省略しております。二重のfor文によってA,B行列を56×41通り出したいのですがA,B行列もインデックス付けされてしまいうまくいきません。
13 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
for j=1:size(cla,2)
for l=1:size(cla,1)
c11(l,j)=-ro.*v.*s(l,j).*cd(l,j)./m;
c12(l,j)=ro.*v.^2.*s(l,j)./(2.*m).*(-cd(l,j)+cl(l,j)./57.3);
c14=-g/57.3;
A(l,j)=[c11(l,j) c12(l,j) 0 c14;
c21(l,j) c22(l,j) c23 0;
c31(l,j) c32(l,j) c33(l,j) 0;
0 0 1 0];
B(l,j)=[0;
d21(l,j);
d31(l,j);
0];
end
end
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur ビッグ データの処理 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!