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/wconv.sci | 4 ---- 1 file changed, 4 deletions(-) (limited to 'macros/wconv.sci') diff --git a/macros/wconv.sci b/macros/wconv.sci index 985c429..edfcf70 100644 --- a/macros/wconv.sci +++ b/macros/wconv.sci @@ -11,11 +11,9 @@ function y = wconv (typ, x, f, shape) //Performs 1D or 2D convolution. - //Calling Sequence //y = wconv (type, x, f) // y = wconv (type, x, f, shape) - //Parameters //type: convolution type. // 1 or "1" for 1D @@ -26,10 +24,8 @@ function y = wconv (typ, x, f, shape) // "full", computes the full one/two-dimensional convolution. It is the default value. // "same", computes the central part of the convolution of the same size as x. // "valid", computes the convolution parts without the zero-padding of x. - //Description //It performs 1D or 2D convolution between the signal x and the filter coefficients f. - //Examples //a = [1 2 3 4 5] //b = [7 8 9 10] -- cgit