Info
この質問は閉じられています。 編集または回答するには再度開いてください。
Trying to use the values for 3 separate vectors and add them into a for loop to answer my equation for for each different value. Please help.
1 回表示 (過去 30 日間)
古いコメントを表示
Hi! I'm trying to solve for Po with 3 vectors. Idk ifI'm doing this correctly or not. I have the code I'm trying to run below.
fy = [200; 250; 300];
fc = [15; 30; 50; 70];
Ac = [0.0066 0.0055:0.029 0.0266];
for i = 1:length(fy)
for j = 1:length(fc)
for k =1:length(Ac)
Po(i,j,k) = (fy(j).*Ast)+(alpha1.*fc(i)*Ac(k));
end
end
end
4 件のコメント
Mathieu NOE
2020 年 11 月 6 日
there is something wrong in your inputs
you have now given two definitions of Ac :
Ac = [0.0066 0.0055;0.029 0.0266] dim : 2 x2
or
Ac = (((100-(2*4))/2)^2)*pi ?? dim : 1 (scalar)
回答 (0 件)
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!