Substituting input array into an equation.

I have an input array which looks like this;
while count < Set_data
y = input('Input initial Pressure ')
z = input('Input Temperature ')+273
x=[x y z]
count=count+1;
end
How do i substitute the said array into
Density=y/(0.287*z)
Final_Pressure=-1*Density*10000/2

1 件のコメント

DGM
DGM 2021 年 12 月 27 日
Maybe instead of interleaving two variables in the same vector and then trying to figure out how to work around the obstacle that created, just store them separately to begin with.

サインインしてコメントする。

 採用された回答

Voss
Voss 2021 年 12 月 27 日

0 投票

x = [];
x_initial_size = numel(x);
Set_data = 3;
count = 0;
while count < Set_data
y = input('Input initial Pressure ')
z = input('Input Temperature ')+273
x=[x y z]
count=count+1;
end
y = x(x_initial_size+1:2:end);
z = x(x_initial_size+2:2:end);
Density=y./(0.287*z)
Final_Pressure=-1*Density*10000/2

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeCreating and Concatenating Matrices についてさらに検索

タグ

質問済み:

2021 年 12 月 27 日

コメント済み:

2021 年 12 月 27 日

Community Treasure Hunt

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

Start Hunting!

Translated by