⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 swapbyte.m

📁 美国德克萨斯州大学电子工程系开发的一套进行语音分析的MATLAB程序. A MATLAB software tool for speech analysis.
💻 M
字号:
function [out] = swapbyte(infile,hdrs) 


% Copyright (c) 1996 by Philipos C. Loizou
%
%

fp=fopen(infile,'r');
if fp<0, error('Unable to open the file in swapbyte.m ');
end

hdrs
fseek(fp,hdrs,'bof'); % ..... skip hdrs bytes in header 
xin=fread(fp,inf,'ushort');

hi=floor(xin/256); % get the high byte
lo=xin-256*hi;     % get the low byte
out=256*lo+hi;     % swap


% .. convert the unsigned representation to signed representation ...
%
mx=32768*2;
med=32768;
neg=find(out>med); lneg=length(neg);
if lneg>0
 out(neg)=out(neg)-mx*ones(lneg,1);
end

fclose(fp);




































⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -