1. Matlab怎么判断空矩阵http://www.ilovematlab.cn/thread-48915-1-1.html
a=[ ]
if isempty(a)
2.matlab寻找多个最大值位置http://zhidao.baidu.com/link?url=6zNKvA9qfvbKVCu3eC8032XVEqvULhVhxIb162EA2pOB2jBPmw6eYS9uuOSNLy-aMoU9odWX_wEVBsOQiVp9G_
a=[2,4,3,5,2,3,5;2,3,4,7,5,4,7];
m=max(a(1,:));index=find(a(1,:)==m);max_array=a(1,index);
3. [求助] Matlab怎么求一个二维矩阵中某一个行向量的位置 http://www.ilovematlab.cn/thread-67557-1-1.html
比如有矩阵A=[ 1 1 1;
2 2 2;
3 3 3;
4 4 4;]
行向量B=[3 3 3]
则: B在A的第 3 行
A=[ 1 1 1;
2 2 2
3 3 3
4 4 4];
B=[3 3 3];
find(ismember(A,B,‘rows‘))
或:[ind,loc] = ismember(A,B,‘rows‘);
4.
5.
时间: 2024-10-03 22:48:19