Omit columns averages from a matrix.
For example: A =
16 2 3 13
5 11 10 8
9 7 6 12
4 14 15 1mean_of_each_column = 8.5000 8.5000 8.5000 8.5000
Result=
7.5000 -6.5000 -5.5000 4.5000
-3.5000 2.5000 1.5000 -0.5000
0.5000 -1.5000 -2.5000 3.5000
-4.5000 5.5000 6.5000 -7.5000
Solution Stats
Problem Comments
3 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers619
Suggested Problems
-
Read a column of numbers and interpolate missing data
2350 Solvers
-
Remove the polynomials that have positive real elements of their roots.
1740 Solvers
-
07 - Common functions and indexing 2
423 Solvers
-
Matlab Basics - Absolute Value
670 Solvers
-
Finding perimeter of a rectangle
495 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!
The test suite should include a matrix where the columns have different averages. Also, I think that "subtract" would be easier to understand than "omit".
Totally agree with James!!!
Ctrl-C, Ctrl-V from bsxfun's help. Exactly how I like it!