commit stale changes

This commit is contained in:
2026-07-26 21:41:38 +02:00
parent 9e208c70e8
commit dced0e2563
3 changed files with 61 additions and 4 deletions
+28
View File
@@ -0,0 +1,28 @@
## Copyright (C) 2025 jens
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <https://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {} {@var{retval} =} wavread (@var{input1}, @var{input2})
##
## @seealso{}
## @end deftypefn
## Author: jens <jens@phobos>
## Created: 2025-08-22
function retval = wavread (filename)
retval = audioread(filename)
endfunction
+1 -1
View File
@@ -18,7 +18,7 @@ function wavw16(waveData,sRate,wavefile)
if nargin~=3 if nargin~=3
error('WAVWRITE needs three arguments!'); error('WAVWRITE needs three arguments!');
end end
if isstr(waveData) %old symtax, reorder args if ischar(waveData) %old symtax, reorder args
tmp = waveData; tmp = waveData;
waveData = wavefile; waveData = wavefile;
wavefile = sRate; wavefile = sRate;
+29
View File
@@ -0,0 +1,29 @@
## Copyright (C) 2025 jens
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with this program. If not, see <https://www.gnu.org/licenses/>.
## -*- texinfo -*-
## @deftypefn {} {@var{retval} =} wavwrite (@var{input1}, @var{input2})
##
## @seealso{}
## @end deftypefn
## Author: jens <jens@phobos>
## Created: 2025-08-22
function retval = wavwrite (y, fs, filename)
audiowrite(filename, y, fs)
retval = 0;
endfunction