For loop with multiple arrays

조회 수: 2 (최근 30일)
Vinay Srinivasan
Vinay Srinivasan 2019년 10월 6일
편집: the cyclist 2019년 10월 6일
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 !
mtf.png
  댓글 수: 2
the cyclist
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.
Vinay Srinivasan
Vinay Srinivasan 2019년 10월 6일
Powerclutch [8771.71680000000 14371.2576000000 33023.8944000000 242500.000000000]
%60 km/hr
sfc_60=600; %% SFC in g/kwh
fuel_consumption60= (sfc_60*Powerclutch(1)*100/1000)/(1000*Rho_fuel*60); %fuel consumption in litre/100km
%80km/hr
sfc_80=450;
fuel_consumption80= (sfc_80*Powerclutch(2)*100/1000)/(1000*Rho_fuel*80); %fuel consumption in litre/100km
%120 km/hr
sfc_120=330;
fuel_consumption120= (sfc_120*Powerclutch(3)*100/1000)/(1000*Rho_fuel*120);
%maximum speed
sfc_maximumspeed=360;
fuel_consumptionmaxspeed= (sfc_maximumspeed*Powerclutch(4)*100/1000)/(1000*Rho_fuel*maximum_speed);

댓글을 달려면 로그인하십시오.

답변 (1개)

the cyclist
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.
  댓글 수: 1
Vinay Srinivasan
Vinay Srinivasan 2019년 10월 6일
Yeah it worked. Thank you so much

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by