Problem 180. Omit columns averages from a matrix

Omit columns averages from a matrix.

For example: A =

    16     2     3    13
     5    11    10     8
     9     7     6    12
     4    14    15     1

mean_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

69.75% Correct | 30.25% Incorrect
Last Solution submitted on Mar 08, 2024

Problem Comments

Solution Comments

Show comments

Problem Recent Solvers578

Suggested Problems

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!