diff options
author | Rashmi Patankar | 2025-03-19 11:23:42 +0530 |
---|---|---|
committer | GitHub | 2025-03-19 11:23:42 +0530 |
commit | a0bff158d21c2c12a12781bc5019f3a45bd866b2 (patch) | |
tree | 2f0d5193acebba1e16bec942d1384374e832eb1a /macros/fftfilt.sci | |
parent | af6fe82f90dcb2314a3d37a9a1e297fb0fc447f3 (diff) | |
parent | a9ab1158be6a5057cb9693c84c0355b99340857a (diff) | |
download | FOSSEE-Signal-Processing-Toolbox-master.tar.gz FOSSEE-Signal-Processing-Toolbox-master.tar.bz2 FOSSEE-Signal-Processing-Toolbox-master.zip |
Winter Internship 2024 work done by Abinash Singh
Diffstat (limited to 'macros/fftfilt.sci')
-rw-r--r-- | macros/fftfilt.sci | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/macros/fftfilt.sci b/macros/fftfilt.sci index ab171ce..1f696ab 100644 --- a/macros/fftfilt.sci +++ b/macros/fftfilt.sci @@ -1,3 +1,14 @@ +// Copyright (C) 2018 - IIT Bombay - FOSSEE +// This file must be used under the terms of the CeCILL. +// This source file is licensed as described in the file COPYING, which +// you should have received as part of this distribution. The terms +// are also available at +// http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt +// Original Source : https://octave.sourceforge.io/ +// Modifieded by: Abinash Singh Under FOSSEE Internship +// Last Modified on : 3 Feb 2024 +// Organization: FOSSEE, IIT Bombay +// Email: toolbox@scilab.in function y = fftfilt(b, x, varargin) // Performs FFT-based FIR filtering using overlap-add method // @@ -31,13 +42,7 @@ function y = fftfilt(b, x, varargin) // x = sin(1:2000); // b = [1 1/4;1/3 1/5]; // y = fftfilt(b,x); - // - // Authors - // Ayush Baid - - - - + [numOutArgs,numInArgs] = argn(0); // ** Checking number of arguments @@ -201,4 +206,4 @@ function y = fftfilt(b, x, varargin) end -endfunction +endfunction
\ No newline at end of file |