Row unity in matrix

6 visualizzazioni (ultimi 30 giorni)
Harini Mahendra Prabhu
Harini Mahendra Prabhu il 24 Set 2020
Risposto: Steven Lord il 24 Set 2020
Hi there,
I've created a random 9 times matrix using the command:
P = rand(9,9)
How do I make sure that the rows in each of the matrix are equal to one when added?
Any help will be appreciated!
Thanks

Risposta accettata

Sindar
Sindar il 24 Set 2020
P_norm = P./sum(P,2);

Più risposte (1)

Steven Lord
Steven Lord il 24 Set 2020
>> P = rand(9);
>> NP = normalize(P, 2, 'norm', 1);
>> sum(NP, 2)
ans =
1
1
1
1
1
1
1
1
1

Categorie

Scopri di più su Mathematics in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by