从 table 中的每一列中提取最大值

Extracting max value from each column in a table

我在一列中生成了 table 的数据,在下一系列列中尝试了 1-10 次。我希望能够在每次尝试中提取最大值以进行进一步分析。

我试过 table MGA

max = max(MGA(:, [])) 

我收到以下错误 -- "You cannot subscript a table using only one subscript. Table subscripting requires both row and variable subscripts."

首先:永远不要 max = max();,你会超载 max,并且你将无法再次使用它。

要回答这个问题,您可以执行以下操作(请注意,我将值保留在第一列中):

MGA
MGA =    
     1     5     3     8     9
     2     4     7     3     3
     3     8     7     6     9
     4     8     2     7     3
     5     2     2     9    10
     6     5     5    10     4
     7     5    10     6     2
     8     7     4     2     3
     9     8     6     2     7
    10     8     3     3     5

max_values = [MGA(:,1), max(MGA(:,2:end),[],2)]
max_values =    
     1     9
     2     7
     3     9
     4     8
     5    10
     6    10
     7    10
     8     7
     9     8
    10     8