commit stale changes
This commit is contained in:
@@ -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
@@ -18,7 +18,7 @@ function wavw16(waveData,sRate,wavefile)
|
||||
if nargin~=3
|
||||
error('WAVWRITE needs three arguments!');
|
||||
end
|
||||
if isstr(waveData) %old symtax, reorder args
|
||||
if ischar(waveData) %old symtax, reorder args
|
||||
tmp = waveData;
|
||||
waveData = wavefile;
|
||||
wavefile = sRate;
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user