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
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!

Translated by