For loop with multiple arrays
2 ビュー (過去 30 日間)
古いコメントを表示
Hello Everyone ,I have to determine fuel_consumption at 60,80 ,120 and maximum speed. Fuel consumption is function of sfc,powerclutch and speed which is varying and the rest are constant.How to use for loop in this condition istead of writing 4 times .Can someone advice me please !
2 件のコメント
the cyclist
2019 年 10 月 6 日
It's easier for us to help you if you paste your code as text (not an image of your code), because then we can copy & paste it into MATLAB for editing.
回答 (1 件)
the cyclist
2019 年 10 月 6 日
編集済み: the cyclist
2019 年 10 月 6 日
You don't need a loop:
% These are tot defined in your code, so I made up some numbers
max_speed = 180;
Rho_fuel = 1;
Powerclutch = [8771.7168 14371.2576 33023.8944 242500];
speed = [60 80 120 max_speed];
sfc = [600 450 330 360];
fuelConsumption = (sfc.*Powerclutch*100/1000)./(1000*Rho_fuel*speed);
This calculates all four values in vectorized form.
参考
カテゴリ
Help Center および File Exchange で Graph and Network Algorithms についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!