where is the the porblem in audiowrite?

5 views (last 30 days)
nour arab
nour arab on 8 Jul 2019
Answered: nour arab on 9 Jul 2019
where is the the porblem in audiowrite?
srate=11025;
t=0:1/srate:1;
s=sin(2*pi*500*t)
sound(s,srate);
AUDIOWRITE('test.wav',s,srate)
  5 Comments
nour arab
nour arab on 9 Jul 2019
Error using audiowrite
The value of 'Fs' is invalid. Expected input to be positive.
Error in audiowrite>parseInputs (line 226)
parse(p,filename, y, Fs, pvpairs{:});
Error in audiowrite (line 103)
props = parseInputs(filename, y, Fs, varargin);
Error in Untitled5m (line 5)
audiowrite('test.wav',s,t)
Guillaume
Guillaume on 9 Jul 2019
The code you show:
audiowrite('test.wav',s,srate)
The error you get says that it comes from:
audiowrite('test.wav',s,t)
How can we tell you what the problem is if you don't even show us the same code as the one that produces the error.
In any case, the error couldn't be more clear. You're passing a negative sampling rate which of course makes no sense.

Sign in to comment.

Answers (2)

Jan
Jan on 9 Jul 2019
In the original question you write:
AUDIOWRITE('test.wav',s,srate)
In the comment you mention:
audiowrite('test.wav',s,t)
The error message tells you clearly, that the 3rd input is not a positive scalar value.

nour arab
nour arab on 9 Jul 2019
Thanks it works

Tags

Community Treasure Hunt

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

Start Hunting!