Why do i get the message" too many output arg"

조회 수: 4 (최근 30일)
Denny Muttathil
Denny Muttathil 2017년 2월 16일
편집: zina shalchi 2020년 9월 25일
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.

답변 (1개)

Adam
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
Denny Muttathil
Denny Muttathil 2017년 2월 16일
Yeah my bad. I was confused myself. Actually the third arg i got, was in this link: http://matlab.izmiran.ru/help/techdoc/ref/wavread.html
I unintentionally reversed the arguments of each function.
zina shalchi
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 CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by