Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Don't use loops if , else, while, find any conditionals or iterations MAATLAB Don't use loops if , else, while, find any conditionals or iterations
Don't use loops if , else, while, find any conditionals or iterations MAATLAB
Don't use loops if , else, while, find any conditionals or iterations MAATLAB
Function Name: overTheBudget Inputs: 1. (double) A 1xN vector 2. (double) A per purchase maximum Outputs: 1. (logical) True if any of the purchases is over the maximum per purchase 2. (double) Sum of the over the budget expenses Description: Note that if none of the purchases exceeded the per purchase maximum, the output logical should be false and the double should equal zero. Notes: - The find() function is banned Examples: [ out 1 , out 2]= overTheBudget ([2,4,6,10,12],5) \%out 1= true \%out 2=13(0+0+1+5+7) [ out 1 , out 2]= overTheBudget ([1,6,3,1,4],7) \%out 1= false \%out2 =0Step 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