eq.m

来自「基于matlab的面向对象的信号处理类库。主要应用于音频、语音信号的一些处理。内」· M 代码 · 共 16 行

M
16
字号
function c=eq(a,b)% overloading of operator ==% $Id: eq.m 47 2004-09-09 08:01:57Z mairas $if ~(isa(a,'time') & isa(b,'time'))  error('Both operands must be time objects');endtry  c = (a.beg==b.beg & a.num==b.num & a.fs==b.fs);catch  c=0;end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?