我有一个名为202x141x3
矩阵的矩阵M
。我想执行代码
sum(M,3);
然而,我收到了错误,例如
Subscript indices must either be real positive integers or logicals.
我调试并看到M矩阵中的内容,它没有问题。但是我不能使用上面的功能。你能在here看到我的M.mat矩阵,让我知道如何将上面的函数用于我的M.mat矩阵
答案 0 :(得分:1)
您确实在名称sum
a = [1 2 3 ; 4 -5 6; 7 8 9]
sum = 1;
>> sum(a)
Subscript indices must either be real positive integers or logicals.
clear sum;
>> sum(a)
ans =
12 5 18