summaryrefslogtreecommitdiff
path: root/macros/wconv.sci
diff options
context:
space:
mode:
authoravinashlalotra2025-04-26 20:09:12 +0530
committeravinashlalotra2025-04-26 20:09:12 +0530
commitea7dcdba3b83696b97cc431ee050b58f9a0f3507 (patch)
tree49ea8ba898b88535c261546f4e3accbdf4c83bdf /macros/wconv.sci
parent725d9ee2ddb254f57a896bb47e0e727759eb5901 (diff)
downloadFOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.tar.gz
FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.tar.bz2
FOSSEE-Signal-Processing-Toolbox-ea7dcdba3b83696b97cc431ee050b58f9a0f3507.zip
formated source documentation pattern for generating docs
Diffstat (limited to 'macros/wconv.sci')
-rw-r--r--macros/wconv.sci4
1 files changed, 0 insertions, 4 deletions
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]