comparison toolboxes/MIRtoolbox1.3.2/MIRToolbox/@mircepstrum/mtimes.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
1 function c = mtimes(a,b)
2
3 a = mircepstrum(a,'Freq');
4 if isa(b,'mirautocor')
5 if not(get(b,'OfSpectrum'))
6 b = mirautocor(b,'Freq');
7 end
8 elseif isa(b,'mircepstrum')
9 b = mircepstrum(b,'Freq');
10 end
11 c = mirtimes(a,b);