Substitute the minimum value in each row of a matrix A by the mean of that row (it should also work if the input is a vector)
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers57
Suggested Problems
-
4780 Solvers
-
given 3 sides, find area of this triangle
820 Solvers
-
Make a random, non-repeating vector.
11235 Solvers
-
Make a vector of prime numbers
966 Solvers
-
Check that number is whole number
5209 Solvers
More from this Author1
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
could you perhaps add a test where the minimum is not in the first column and it is not at the same place in all of the rows? For example: A = [4,5,3,2; 2,1,3,4]; B_correct = [4,5,3,3.5; 2,2.5,3,4];