summaryrefslogtreecommitdiff
path: root/macros/dctmtx.sci
diff options
context:
space:
mode:
authoravinashlalotra2025-04-26 20:09:12 +0530
committeravinashlalotra2025-04-26 20:09:12 +0530
commitea7dcdba3b83696b97cc431ee050b58f9a0f3507 (patch)
tree49ea8ba898b88535c261546f4e3accbdf4c83bdf /macros/dctmtx.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/dctmtx.sci')
-rw-r--r--macros/dctmtx.sci4
1 files changed, 0 insertions, 4 deletions
diff --git a/macros/dctmtx.sci b/macros/dctmtx.sci
index e399d47..eb1203e 100644
--- a/macros/dctmtx.sci
+++ b/macros/dctmtx.sci
@@ -12,16 +12,12 @@
function T = dctmtx(n)
// Return the DCT transformation matrix of size N-by-N.
-
//Calling Sequence
//T = dctmtx(n)
-
//Parameters
//n: Real scalar integer greater than or equal to 1
-
//Description
//dctmtx(n) returns a Discrete cosine transform matrix (D) of order n-by-n. It is useful for jpeg image compression. D*A is the DCT of the columns of A and D'*A is the inverse DCT of the columns of A (when A is n-by-n).
-
// Examples
//n= 3;
//T = dctmtx(n)