内向雪糕

文章
6
资源
0
加入时间
3年0月21天

matlab 计算过零率

function count = zero_crossings(x)% x 必须是1位的行向量或者列向量 时域信号% count为返回的过零率计算% initial valuecount = 0;% error checksif(length(x) == 1) error('ERROR: input signal must have more than one eleme...