divide the entries in the column by entries from another column
21 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Turbulence Analysis
am 8 Apr. 2022
Kommentiert: Turbulence Analysis
am 11 Apr. 2022
Hi,
I have five arrays lets say A, B , C , D, E of size 100x 3.
Here, For instance, I have to divide entries in the second column of A by sum of entries in the second column of A, B , C , D , E
Something like this
AA = A (:,2)/ ( A(:,2) + B(:,2) + C(:,2) + D(:,2) + E(:,2))
0 Kommentare
Akzeptierte Antwort
Voss
am 8 Apr. 2022
Use element-wise division ( ./ ) and you'll have it:
AA = A(:,2) ./ ( A(:,2) + B(:,2) + C(:,2) + D(:,2) + E(:,2) )
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Matrices and Arrays 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!