How to sum the minor number of each line in a matrix?

4 次查看(过去 30 天)
The question its in the title, thanks

回答(1 个)

Erivelton Gualter
Erivelton Gualter 2019-11-20
Given matrix A as:
A = [9 6 3;
8 5 2;
7 4 1]; % Sample Matrix
minA = min(A,[],2); % Returns min value for each line (row)
sumMinA = sum(minA); % Returns the sum of the min values

类别

Help CenterFile Exchange 中查找有关 Numeric Types 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by