How to normalize data of each row of Matrix A=[10 20 30 40;5 15 25 30]; between 0 and 1?

1 回表示 (過去 30 日間)
nomi nomi
nomi nomi 2020 年 4 月 29 日
編集済み: nomi nomi 2020 年 4 月 29 日
I am new to MATLAB coding. I want to normalize each value of every row and have write the following code
A=[10 20 30 40;5 15 25 30];
for n=1:2
[valMax,locMax] =max(A(n,:));
[valMin,locMin] =min(A(n,:));
divideOn=A(n,:)-valMin;
divideBy=valMax - valMin;
A(n,:)=divideOn/divideBy;
end
This code is coverting value of each row between 0 and 1.Kindly guide is this right approach.

回答 (1 件)

Akira Agata
Akira Agata 2020 年 4 月 29 日
I believe you can do this task by simply applying normalize function, like:
B = normalize(A,2,'range'); % Normalize each row to [0 1] range

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by