From ea7dcdba3b83696b97cc431ee050b58f9a0f3507 Mon Sep 17 00:00:00 2001 From: avinashlalotra Date: Sat, 26 Apr 2025 20:09:12 +0530 Subject: formated source documentation pattern for generating docs --- macros/firtype.sci | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'macros/firtype.sci') diff --git a/macros/firtype.sci b/macros/firtype.sci index 4a17e4e..9d5ab8d 100644 --- a/macros/firtype.sci +++ b/macros/firtype.sci @@ -1,26 +1,21 @@ -//Author: Parthasarathi Panda -//parthasarathipanda314@gmail.com function typ=firtype(b) //This function identifies Type of linear phase FIR filter - //Calling Sequence //t = firtype(b) - //Parameters //t: type of an FIR filter //b: Filter coefficients - //Description //t = firtype(b) determines the type, t, of an FIR filter with coefficients b. t can be 1, 2, 3, or 4. The filter must be real and have linear phase. - //Examples //b=[9.2762e-05 9.5482e-02 4.0443e-01 4.0443e-01 9.5482e-02 9.2762e-05] //firtype(b) //Output : 2 - //b=[-1 -2 0 2 1] //firtype(b) //Output : 3 +//Author: Parthasarathi Panda +//parthasarathipanda314@gmail.com if (type(b)~=1) then error('check input type'); -- cgit