概述
求矩阵的模:
function count = juZhenDeMo(a,b)
[r,c] = size(a);%求a的行列
[r1,c1] = size(b);%求b的行列
count = 0;
for j=1:r-r1+1%所求的行数中取
for i=1:c-c1+1%所有的列数中取
d = a(j:j+r1-1,i:i+c1-1);
e = double(d==b);
if(sum(e(:))==r1*c1)
count = count + 1;
end
end
end<pre name="code" class="plain">clc;
clear;
a = eye(6)
b = [1 0;0 1]
disp('a矩阵中b的模的个数是:');
count = juZhenDeMo(a,b)
end
求向量的模:
function count = sta_submatrix1(a,b)
count = 0;
for i = 1:length(a)-length(b)+1
c = a(i:i+length(b)-1);
e =
最后
以上就是开朗黑裤为你收集整理的matlab求矩阵、向量的模的全部内容,希望文章能够帮你解决matlab求矩阵、向量的模所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复