What are the bolded variables in colon mentioned in the code. What is the programmer trying to do with these variables ??

2 views (last 30 days)
tmp_fea = cqcc(x, fs, B, fmax, fmin, d, cf, 'ZsdD');
tmp_fea1 = melcepst(x, fs, '0dD', n_MFCC, floor(3*log(fs)) ,frame_length * fs, frame_hop * fs, fl, fh)';
fea = [tmp_fea tmp_fea1];
  1 Comment
Torsten K
Torsten K on 21 Oct 2020
Well, as far as I can see, cqcc is a function with input-variables (x, fs, B, fmax, fmin, d, cf) and one input-string ('ZsdD'). The same occurs with the function melcepst, where 'OdD' is also an input-string. So, 'ZsdD' and 'OdD' are not variables, but character-strings.
What the programmer tries to do? No idea, for an answer one must check the source-code of the functions cqcc and melcepst.

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 21 Oct 2020
the first one is explained in the comments in the source code
https://github.com/azraelkuan/asvspoof2017/blob/master/baseline/CQCC_v1.0/cqcc.m

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!