How to normalize a matrix or array?
8 views (last 30 days)
Show older comments
I want to normalize the following array/matrix in such a way that
1) Replace each Row element with average value of that Row.
2) Normalize the matrix with respect to the row with maximum average.
A1 A2 A3 A4 . . . An
B1 B2 B3 B4 . . . Bn
C1 C2 C3 C4 . . .Cn
D1 D2 D3 D4 D5. . . Dn
I shall be really grateful.
2 Comments
Askic V
on 20 Feb 2023
I suggest you to start by reading the Matlab documentation.
It would be good to post one test example. How matrix look like in the begining of the process and how outcome looks like.
Dyuman Joshi
on 20 Feb 2023
It's not clear how you want to replace the values.
Let's say this is the input
y = reshape(1:20,4,5)
What should be the output(s)?
Answers (1)
Bhavana Ravirala
on 20 Feb 2023
Hi Mirza,
I understand that you want to replace each row with the average of all the elements in that row.
A = [0 1 1; 2 3 2; 1 3 2; 4 2 2]
M = mean(A,2) % gives a column vector with the average of all the elements in each row.
For getting the maximum value you can use the ‘max’ function.
Please refer to the below documentation for more information.
Hope this helps!!
0 Comments
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!