what is native wavread()?

조회 수: 10 (최근 30일)
Asra Khalid
Asra Khalid 2018년 6월 26일
답변: Dhaniklal 2023년 1월 19일
What is native wavread()? and what is the actual syntax for this command?

답변 (1개)

Dhaniklal
Dhaniklal 2023년 1월 19일
Hi,
I understand that you would like to know about wavread() function and input argument/datatype ‘native’.
You may note that wavread() was removed from MATLAB and you should be able to use audioread() as replacement for wavread(). The last release that had wavread() was R2015a.
Syntax for audioread() :
[y,Fs] = audioread(__, dataType);
It returns sampled data in the data range corresponding to the dataType of 'native' or 'double and can include input arguments such as filename and samples.
Example:
[y,Fs] = audioread(filename,'native');%dataType ‘native’
This returns audio data in the native format of the file.
Please follow the below link for more information:
Thanks,
Dhaniklal

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by