How to use ouput of a function as input of second function
2 ビュー (過去 30 日間)
古いコメントを表示
I have written a function
function [dtmf]=dtmfseg(x);
Now i want to use the output of this fuction as input to second function
fucntion ss=dtmfscor(dtmf,freq,L,fs)
How it is possible
0 件のコメント
回答 (4 件)
Fangjun Jiang
2011 年 10 月 18 日
Well, if you have those two functions defined, you can use:
dtmf=dtmfseg(x);
ss=dtmfscor(dtmf,freq,L,fs);
or one line
ss=dtmfscor(dtmfseq(x),freq,L,fs);
0 件のコメント
Michael
2011 年 10 月 18 日
[dtmf]=dtmfseg(x); ss=dtmfscor(dtmf,freq,L,fs);
or dtmfscor(dtmfseg(x),freq,L,fs);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で DTMF についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!