Why do i get the message" too many output arg"
조회 수: 4 (최근 30일)
이전 댓글 표시
I am trying to apply a filter on my music-file.By trying it to run, i get the error message
Error using audioread
Too many output arguments.
Error in A (line 1)
[z,fs,nb]= audioread('UnchainMyHeart.wav');
What do i need to do, to get rid of this problem? The size of my file is 478600x2, Bytes 7657600, Class double.
[z,fs,nb]= audioread('UnchainMyHeart.wav');
bfil=fft(z); %fft of input signal
wn=[1 200]/(fs/2); %bandpass
[b,a]=butter(6,wn);
fvtool(b,a);
f=filter(b,a,z);
afil=fft(f);
subplot(2,1,1);
plot(real(bfil));
title('input signal');
xlabel('frequency');
ylabel('magnitude');
subplot(2,1,2);
plot(real(afil));
title('filtered signal');
xlabel('frequency');
ylabel('magnitude');
I also think, i lack some knowledge about filters in general, if you happen to find some more mistakes, please enlighten me in this matter.
댓글 수: 0
답변 (1개)
Adam
2017년 2월 16일
편집: Adam
2017년 2월 16일
Surely this is obvious from the error message?
doc audioread
shows (in Matlab R2016b, at least) that audioread only has two output arguments so I have no idea what you expect your 3rd argument to be, especially with the names you give them.
Since you don't use 'nb' anywhere though just get rid of it from the output argument list.
댓글 수: 2
zina shalchi
2020년 9월 25일
편집: zina shalchi
2020년 9월 25일
can you tell me how can I use audioread with the following statement:
[Size, Sfreq, NbS, opt] = wavread (File, 'size');
I replaced audioread instead
[Size, Sfreq, NbS, opt] = audioread (File, 'size');
but I got errors too many arguments in output can you please help me to solve it?
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!