dudubear2009 发表于 2007-5-30 20:24

不明白EMD中的停止条件

rilling代码中,stop默认为,

S = size(stop);            %计算停止条件,包含3个值的列向量
if ((S(1) > 1) & (S(2) > 1)) | (S(1) > 3) | (S(2) > 3) | (length(S) > 2)
error('stop must have only one row or one column of max three elements')
end
if S(1) > 1               %第一行个数>1,则变为列向量
stop = stop';
S = size(stop);
end
if S(2) < 3               %列数为1,2
stop(3)=defstop(3);
end
if S(2) < 2               %列数为1
stop(2)=defstop(2);
end

不知道S(2),和S(1)的理解对不,如果这样的话,为什么if S(2) < 2   不在if S(2) < 3的前面
不然当stop=时,执行为if S(2) < 3 后if S(2) < 2   就不会再执行了,那stop不就只有2个参数了?

matlab基础不好,上面理解肯定有问题,请大虾指点~

eight 发表于 2007-5-30 20:38

本帖最后由 wdhd 于 2016-3-11 13:38 编辑

原帖由 dudubear2009 于 2007-5-30 20:24 发表
rilling代码中,stop默认为,

S = size(stop);            %计算停止条件,包含3个值的列向量
if ((S(1) > 1) & (S(2) > 1)) | (S(1) > 3) | (S(2) > 3) | (length(S) > 2)
error('stop...
这跟matlab无关,哪个编程语言都一样。两个次序得到的结果是一样的,因为 if 语句内并没有改变 S 的值
页: [1]
查看完整版本: 不明白EMD中的停止条件