[x,y]=wavedec(A,3,'sym2');
[ad,bd,cd] = detcoef(x,y,[1 2 3]);
t1=find(abs(bd)>=(max(abs(bd))*0.5));
这个t1 t2用find函数如何理解,0.5倍的max是怎么选取的。