Filter löschen
Filter löschen

Difference between columns, fixed the first column, in a matrix

1 Ansicht (letzte 30 Tage)
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!

Akzeptierte Antwort

Adam
Adam am 3 Nov. 2017
Bearbeitet: Adam am 3 Nov. 2017
res = max( 0, A(:,2:end,:) - A(:,1,:) );
Note: This syntax only works from R2016b. For older syntax see Andrei Bobrov's answer

Weitere Antworten (1)

Andrei Bobrov
Andrei Bobrov am 3 Nov. 2017
Bearbeitet: Andrei Bobrov am 3 Nov. 2017
B = bsxfun(@minus,A(:,2:end,:),A(:,1,:));
B(B<0) = 0;

Kategorien

Mehr zu Elementary Math finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by