summaryrefslogtreecommitdiff
path: root/macros
diff options
context:
space:
mode:
authorChandra Pratap2024-08-07 17:52:23 +0530
committerChandra Pratap2024-08-07 17:52:23 +0530
commitc0a1045abbab25c9860e90c32eaec1c07bd8684c (patch)
treeefd08c11191d56cf9e4dd0444d86e7759c152ee6 /macros
parent795136ca24e55e069702c8e2b9b51fdaf93d1144 (diff)
downloadFOSSEE-Signal-Processing-Toolbox-c0a1045abbab25c9860e90c32eaec1c07bd8684c.tar.gz
FOSSEE-Signal-Processing-Toolbox-c0a1045abbab25c9860e90c32eaec1c07bd8684c.tar.bz2
FOSSEE-Signal-Processing-Toolbox-c0a1045abbab25c9860e90c32eaec1c07bd8684c.zip
Implement morlet.sci in Scilab
Diffstat (limited to 'macros')
-rw-r--r--macros/morlet.sci93
1 files changed, 67 insertions, 26 deletions
diff --git a/macros/morlet.sci b/macros/morlet.sci
index 0a160f0..8bd25a1 100644
--- a/macros/morlet.sci
+++ b/macros/morlet.sci
@@ -1,27 +1,68 @@
-function [psi,x] = morlet (lb,ub,n)
-
-// Generates Morlet wavelets
-// Calling Sequence
-// [psi,x]= morlet(lb,ub,n)
-// Parameters
-// lb: Real or complex valued vector or matrix
-// ub: Real or complex valued vector or matrix
-// n: Real strictly positive scalar number
-// Description
-// This is an Octave function
-// This function returns values of the Morlet wavelet in the specified interval for all the sample points.
-// Examples
-// 1. [a,b]=morlet(1,2,3)
-// a = [0.17205 0.11254 -0.11356]
-// b = [1.0000 1.5000 2.0000]
-// 2. [a,b]=morlet([1 2 3],[1 2 3],1)
-// a = [0.1720498; -0.1135560; -0.0084394]
-// b = [1; 2; 3]
-
-funcprot(0);
-rhs=argn(2);
-if (rhs<3) then
- error ("Wrong number of input arguments.")
-else [psi,x] = callOctave("morlet",lb,ub,n)
-end
+function [psi,x] = morlet(lb, ub, n)
+//Compute the Morlet wavelet.
+//Calling sequence:
+//[psi,x]= morlet(lb,ub,n)
+//Parameters:
+//lb: Real or complex valued vector/scalar
+//ub: Real or complex valued vector/scalar
+//n: Real positive scalar number
+//Description:
+//This function returns values of the Morlet wavelet in the specified interval for all the sample points.
+//Example:
+//[a,b] = morlet([1 2 3], [1 2 3], 1)
+//a = [0.1720498; -0.1135560; -0.0084394]
+//b = [1; 2; 3]
+
+ funcprot(0);
+ rhs = argn(2);
+
+ if (rhs ~= 3) then
+ error("morlet: wrong number of input arguments");
+ end
+
+ if (length(lb) ~= length(ub)) then
+ error("morlet: arg1 and arg2 msut have same dimension");
+ end
+
+ if (~isreal(n) | n <= 0) then
+ error("morlet: n must be a strictly positive real number");
+ end
+ x = [];
+ for i=1:length(lb)
+ x(i, :) = linspace(lb(i), ub(i), n);
+ end
+ psi = cos(5.*x) .* exp(-x.^2/2);
+
endfunction
+
+//input validation:
+//assert_checkerror("morlet()", "morlet: wrong number of input arguments");
+//assert_checkerror("morlet(1, 2)", "morlet: wrong number of input arguments");
+//assert_checkerror("morlet(1, 2, 3, 4)", "Wrong number of input arguments.");
+//assert_checkerror("morlet(1, 2, -1)", "morlet: n must be a strictly positive real number");
+//assert_checkerror("morlet(1, 2, 2+3*%i)", "morlet: n must be a strictly positive real number");
+//assert_checkerror(" morlet([5, 2, 7], [1, 3], 3)", "morlet: arg1 and arg2 msut have same dimension");
+
+//test basic input:
+//[a, b] = morlet(1, 2, 3);
+//assert_checkalmostequal(a, [0.17205, 0.11254, -0.11356], 5e-5);
+//assert_checkalmostequal(b, [1, 1.5, 2], %eps);
+
+//test complex input:
+//[a, b] = morlet(3+2*%i, 4+8*%i, 2);
+//assert_checkalmostequal(a, [-495.15886-756.35443*%i, -5.08135E26-3.07588E27*%i], 5e-5);
+//assert_checkalmostequal(b, [3+2*%i, 4+8*%i], %eps);
+
+//test real vector:
+//[a, b] = morlet([1, 2], [3, 4], 2);
+//A = [0.1720498, -0.0084394; -0.113556, 0.0001369];
+//B = [1, 3; 2, 4];
+//assert_checkalmostequal(A, a, 5e-5);
+//assert_checkalmostequal(B, b, %eps);
+
+//test complex vector:
+//[a, b] = morlet([1 + 2*%i, 3*%i], [2*%i, 2 + 3*%i], 1);
+//A = [81377.39587; -19069291.16508 + 5732843.75676*%i];
+//B = [2*%i; 2+3*%i];
+//assert_checkalmostequal(a, A, 5e-5);
+//assert_checkalmostequal(b, B, %eps);