Difference between columns, fixed the first column, in a matrix
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Montserrat Vallcorba Martí
il 3 Nov 2017
Commentato: Montserrat Vallcorba Martí
il 3 Nov 2017
Hi, I have a 3D-matrix and I want to calculate differences between columns, fixed the first column, and the value be positive or zero, i.e., for each 3D dimension calculate: max ( column(i)-column(1), 0 ). For example:

Thank you in advance!
0 Commenti
Risposta accettata
Più risposte (1)
Andrei Bobrov
il 3 Nov 2017
Modificato: Andrei Bobrov
il 3 Nov 2017
B = bsxfun(@minus,A(:,2:end,:),A(:,1,:));
B(B<0) = 0;
Vedere anche
Categorie
Scopri di più su NaNs 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!