Function of rates in matlab

6 Ansichten (letzte 30 Tage)
Rafael Zanetti
Rafael Zanetti am 25 Apr. 2020
Kommentiert: Sriram Tadavarty am 25 Apr. 2020
Hi everyone, I'm not get figure out this function asked in a problem:
My function is that:
function [rate_of_taxi,total] = taxi_fare(d,t)
rate_of_taxi = (5 + (2*(d + 1))) + (0.25 * (t + 1));
end
but does not work.
I Than you if could help me.

Antworten (1)

Sriram Tadavarty
Sriram Tadavarty am 25 Apr. 2020
Bearbeitet: Sriram Tadavarty am 25 Apr. 2020
Hi,
You can try this:
function fare = taxi_fare(d,t)
fkm = 1; % first km
add_km = ceil(d-fkm); % additional km, perform ceil as stated in question
costkm = (fkm*5)+(add_km*2); % First km * 5 + additiona kms * 2
waittime = ceil(t); % Calculate the wait time
costWaittime = waittime*0.25; % Fare for wait time
fare = costkm + costWaittime; % Total cost
end
Hope this helps.
Regards,
Sriram
  2 Kommentare
Rafael Zanetti
Rafael Zanetti am 25 Apr. 2020
That works Sriram, thank you for your help.
Sriram Tadavarty
Sriram Tadavarty am 25 Apr. 2020
Please do accept the answer, if helped.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by