Answered step by step
Verified Expert Solution
Question
1 Approved Answer
for a MATLAB class this is one problem, just cut off on one page 7. Given an array of numbers that could be negative, write
for a MATLAB class
this is one problem, just cut off on one page
7. Given an array of numbers that could be negative, write a function posavg(a) to calculate and return the average (mean) of the non- negative numbers in the single dimensional array, a. One such solution is mean(a(find(a>0))). In order to test your understanding of class concepts, re-implement the posavg(a) function using iteration. You may not use the built-in functions sum(...), find(...), or mean(...) in your solution. I bould lStep 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