Substituting input array into an equation.
Ältere Kommentare anzeigen
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 Kommentar
DGM
am 27 Dez. 2021
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.
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Scripts finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!