Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

can you help me its in Matlab language Before reading this assignment, remember that the Guide to Mini Projects is ALWAYS part of the instructions

can you help me its in Matlab language image text in transcribed
image text in transcribed
Before reading this assignment, remember that the Guide to Mini Projects is ALWAYS part of the instructions for EVERY Mini Project Assignment. Please go back and read it before beginning. Mini Project #2-Bus Routes Introduction~ You are working for a city, and want to set up a system for better understanding the needs of the busses running on certain routes. Using demographic data and technical specifications of busses, the city has created data structures for each city bus with the following properties that do not change: bus.mass - The mass of the buss bus.passMass - The average mass of a passenger on a route bus.engine- The amount of force the bus's engine puts out per unit mass -I In addition, you have added the following property to the structure for simulation purposes. This property can change: bus.numPass - The number of passengers on the bus. Procedure The city wants you to do some calculations on the amount of work buses have to do on bus routes, given the number of passengers entering and leaving busses. You will write a fiunction called busSim that will take the following inputs: bus - A structure with the format defined above. You can assume that it will start with a certain number of passengers on board. passon - An aray that contains only integers. This is the number of passengers that get on at each stop. passoff - An array that contains only integers and is the same length as passon. This is the number of passengers that get off at each stop distance- An array that contains real numbers that is the same lenothac LSUIT -Al array that contains only integers and is the same length as passon. This is the mumber of passengers that get off at each stop. distance-An array that contains real mumbers that is the same length as passon containing the It should return the following ouputs bus -An updated version of the input structure with the final number of passengers. passRecord An array with the same length ad passon with the number of passengers after each totalWork- A real number that is the total amount of work the bus's ine has had to put out on the distance the bus has to travel after each bus stop to get to the next stop bus stop. entire trip. You can assume that passengers will board and leave the bu the first stop before you have to make the first work calculation. You should therefore make as many work calculations as there are elements in each of the input arrays. Additional Code -Data Entry Errors Your function should work with any inputs that are of the correct input Bata types, even if they contain errors. You should handle those errors in the following ways: If your input arrays are not all the same length you should only do calculations up to the index of the shortest array If the number of passengers would ever go below O, it should instead be set to 0. of passengers would ever be a non integer value, it should instead be rounded up If the number to the nearest integer If a distance is listed as negative, treat it as positive You can assume the following and do not have to check for them: Masses will always be positive Engines will always put out positive foree The numbers in passon or passoff will always be non-negative

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Professional Microsoft SQL Server 2014 Integration Services

Authors: Brian Knight, Devin Knight

1st Edition

1118850904, 9781118850909

More Books

Students also viewed these Databases questions

Question

Select suitable tools to analyze service problems.

Answered: 1 week ago