码迷,mamicode.com
首页 > 其他好文 > 详细

matlab用法总结

时间:2015-07-11 10:36:46      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:

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.


 

matlab用法总结

标签:

原文地址:http://www.cnblogs.com/aminxu/p/4638095.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!