git-svn-id: http://moon:8086/svn/vhdl/trunk@1421 cc03376c-175c-47c8-b038-4cd826a8556b
This commit is contained in:
2021-03-21 11:14:50 +00:00
parent e3aeadebf5
commit 55ee041c08
50 changed files with 101754 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
function wav2in(name)
x = wavread(name)*(2^15);
fid = fopen('wav_in.dat', 'w');
fwrite(fid, fix(x), 'int');
fclose(fid);