Write a function called fare that computes the bus fare

Assignment Help Computer Engineering
Reference no: EM132171580

Using Matlab, write a function called fare that computes the bus fare one must pay in a given city based on the distance travelled.

Here is how the fare is calculated: the first mile is $2.

Each additional mile up to a total trip distance of 10 miles is 25 cents. Each additional mile over 10 miles is 10 cents.

Miles are rounded to the nearest integer other than the first mile which must be paid in full once a journey begins.

Children 18 or younger and seniors 60 or older get a 20% discount. The inputs to the function are the distance of the journey and the age of the passenger in this order. Return the fare in dollars, e.g., 2.75 would be the result returned for a 4-mile trip with no discount.

A Transtutors contributor provided this code which works in all instances except where the miles are less than 1 but more than 0.

What needs to be adjuted to yield the correct value when miles are less than 1 (e.g. 0.22)?

function fareDollars = fare(miles, age)
if miles <= 0
fareDollars = 0;
else
remMiles = round(miles - 1);
fareDollars = 2;
if remMiles <= 10
fareDollars = fareDollars + (remMiles * 0.25);
else
fareDollars = fareDollars + (9 * 0.25) + ( (remMiles - 9) * 0.10 );
end
if age <= 18 || age >= 60
fareDollars = fareDollars - (fareDollars * 0.20);
end
end
end

Reference no: EM132171580

Questions Cloud

Fit the logistic regression model with speed : In terms of the classification accuracy, which of these methods appears to provide the best results on this data? Explain why.
Installing and running the eclipse ide : What are some of the issues that you had installing and running the Eclipse IDE for C/C++ developers? Working with the C++ language, discuss the different data
Plot the average divergence against the value of parameter a : Quantify how the average of 10 randomly selected paths of close neighboring initial points diverges in different regimes.
Draw a scatterplot of the four variables : As cheese ages, several chemical processes take place that determine the taste of the final product. Table 8-9 on the textbook's Web site contains data.
Write a function called fare that computes the bus fare : Using Matlab, write a function called fare that computes the bus fare one must pay in a given city based on the distance travelled.
What will be effect of tax on prices of residential houses : Suppose a local government decides to increase the tax rate on residential properties under its jurisdiction. What will be the effect of this on the prices.
The global context in the business environment : QAB020C410S - Business Organisations and Environments in a Global Context - Identify the lessons you have learnt from doing the resit
Develop a fully commented bisection function : Using matlab Develop a fully commented bisection function. Within your function, ensure that you are passing in an anonymous function.
How would you use econometrics in your advice : Suppose you are an economic adviser to the Chairman of the Federal Reserve Board (the Fed), and he asks you whether it is advisable to increase.

Reviews

Write a Review

Computer Engineering Questions & Answers

  Mathematics in computing

Binary search tree, and postorder and preorder traversal Determine the shortest path in Graph

  Ict governance

ICT is defined as the term of Information and communication technologies, it is diverse set of technical tools and resources used by the government agencies to communicate and produce, circulate, store, and manage all information.

  Implementation of memory management

Assignment covers the following eight topics and explore the implementation of memory management, processes and threads.

  Realize business and organizational data storage

Realize business and organizational data storage and fast access times are much more important than they have ever been. Compare and contrast magnetic tapes, magnetic disks, optical discs

  What is the protocol overhead

What are the advantages of using a compiled language over an interpreted one? Under what circumstances would you select to use an interpreted language?

  Implementation of memory management

Paper describes about memory management. How memory is used in executing programs and its critical support for applications.

  Define open and closed loop control systems

Define open and closed loop cotrol systems.Explain difference between time varying and time invariant control system wth suitable example.

  Prepare a proposal to deploy windows server

Prepare a proposal to deploy Windows Server onto an existing network based on the provided scenario.

  Security policy document project

Analyze security requirements and develop a security policy

  Write a procedure that produces independent stack objects

Write a procedure (make-stack) that produces independent stack objects, using a message-passing style, e.g.

  Define a suitable functional unit

Define a suitable functional unit for a comparative study between two different types of paint.

  Calculate yield to maturity and bond prices

Calculate yield to maturity (YTM) and bond prices

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd