Subtract every element of array from one another and find the sum
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to subtract each element from one another and find the sum of each column for every element. Array is [47.07 49.39 56.87 69.04 72.80 72.68]
1 Kommentar
ME
am 1 Nov. 2019
I’m not 100% sure I follow. Could you possibly post your expected result from this?
Antworten (1)
Walter Roberson
am 1 Nov. 2019
A.' - A
4 Kommentare
Walter Roberson
am 2 Nov. 2019
[~, maxidx] = max(YourMatrix(:,3)*YourMatrix(:,4));
ExtractedRow = YourMatrix(maxidx,:);
Siehe auch
Kategorien
Mehr zu Creating and Concatenating Matrices 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!