Answered step by step
Verified Expert Solution
Question
1 Approved Answer
The row array movieBoxOffice stores the amount of money a moviemakes (in millions of $) for the 7 days of a week, starting withSunday. Write
The row array movieBoxOffice stores the amount of money a moviemakes (in millions of $) for the 7 days of a week, starting withSunday. Write a statement that constructs a row arrayweekendBoxOffice having the values for Sunday, Friday, andSaturday.
Ex: If movieBoxOffice is [5.6, 3.5, 1.1, 1.5, 0.8, 1.2, 1.9],then weekendBoxOffice is [5.6, 1.2, 1.9]
Integer indexing array: Weekend box office The row array movieBoxOffice stores the amount of money a movie makes (in millions of $) for the 7 days of a week, starting with Sunday. Write a statement that constructs a row array weekendBoxOffice having the values for Sunday, Friday, and Saturday. Ex: If movieBoxOffice is [5.6, 3.5, 1.1, 1.5, 0.8, 1.2, 1.9], then weekend BoxOffice is [5.6, 1.2, 1.9] Your Solution Save CReset MATLAB Documentation 1 function weekendBoxOffice = GetWeekendEarnings (movieBoxOffice) 2% movieBoxOffice: 7 day box office sales in millions, starting with Sunday 3 4 % Assign Sunday, Friday, and Saturday box office 5 6 % earnings to row array weekendBoxOffice weekendBoxOffice = 0 ; 7 8 end Run Your Solution Code to call your function when you click Run 1 GetWeekendEarnings ([5.6, 3.5, 1.1, 1.5, 0.8, 1.2, 1.9]) CReset
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started