how to sum all row values in a matrix except the ith row?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i have a matrix X=rand([6,3,6]);
I want all the row value sum=1 except the ith row? this ith can be 4/5 according to user's choice? all the matrices row sum will be 1 except the ith row in every matrices? Here i dnt want to exclude the ith row. the elements of the ith row will be there as it is. could someone help me in solving this problem
0 Commenti
Risposta accettata
DGM
il 29 Set 2021
Modificato: DGM
il 29 Set 2021
There are probably other ways, but here's a way (if I understand the question correctly).
A = rand(6,3,6);
dnn = 5; % do not normalize this row
Adn = A(dnn,:,:); % save this row
A = A./sum(A,2); % normalize
A(dnn,:,:) = Adn; % replace the row
sum(A,2) % show that the row sums are 1 except where specified
That will normalize all rows except the specified row. I should point out that while this method discards the normalized results for one row, it's faster than indexing
2 Commenti
DGM
il 30 Set 2021
Not knowing what was modified or what the error is, I'm going to guess that it's an error about mismatched array dimensions. If that's the case, i'm going to have to guess maybe you're running an older version prior to the introduction to generalized implicit array expansion. If that's the case, you can do this:
%A = A./sum(A,2); % normalize (R2016b or newer)
A = bsxfun(@rdivide,A,sum(A,2)); % normalize (pre-R2016b)
If that's not the case, you'll have to let me know what's been changed and what the specific error message is.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!