Why isn't this if statement nested in a for loop working?
1 次查看(过去 30 天)
显示 更早的评论
I am trying to use fuel consumption, velocity, and time data from a real-world drive cycle to calculate the fuel consumed during idle (vehicle speed = 0). IdleFuel represents the volume of fuel consumed during idle; so when vehicle speed =/= 0, IdleFuel should be zero. Here is some sample data and my code (I simplified my actual data, for brevity):
% Time (s)
time = [0 1 2 3 4 5];
% Fuel consumed (L)
Fuel_Consumed = [0.5 1 1.5 2 2.5 3];
% Vehicle speed (mph)
VSPD = [0 10 20 0 10 20];
IdleFuelIndex = find(VSPD == 0); %(find indexes where VSPD = 0)
IdleTime = time(IdleFuelIndex); %s (times when VSPD = 0)
IdleFuel=0;
for n = 1:length(time)
if n == IdleFuelIndex
IdleFuel(n) = Fuel_Consumed(n);
else IdleFuel(n) = 0;
end
end
When I run this, I just get that IdleFuel=0...why is this? I think Matlab is having trouble recognizing what to do if the vehicle speed returns to zero after being nonzero; when I tried altering the data such that only the first entry in the VSPD vector was zero, it seemed to work...but if it returns to zero (such as the fourth entry in the VSPD vector), it just returns IdleFuel as 0. How can I fix this??
Thank you for your time!
0 个评论
回答(1 个)
Chad Greene
2014-7-15
It doesn't work because n (a scalar) will never equal IdleFuelIndex (a vector).
3 个评论
Chad Greene
2014-7-15
You need a double equals in these lines:
if Idle(n) == 0 %(if not idle)
and
elseif Idle(n) == 1 %(if idle)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!