blob: c1517ac23107f1fe97dbdba49e854afbdb67caf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
function y= ifwht(x, varargin)
// Compute the inverse Walsh-Hadamard transform of x using the Fast Walsh-Hadamard Transform (FWHT) algorithm
// Calling Sequence
// ifwht (x)
// ifwht (x, n)
// ifwht (x, n, order)
//Parameters
//x: real or complex valued scalar or vector
//n: Input is truncated or extended to have a length of n
//order: Specifies the order in which the returned inverse Walsh-Hadamard transform
//Description
//Compute the inverse Walsh-Hadamard transform of x using the Fast Walsh-Hadamard Transform (FWHT) algorithm. If the input is a matrix, the inverse FWHT is calculated along the columns of x.
//The number of elements of x must be a power of 2; if not, the input will be extended and filled with zeros. If a second argument is given, the input is truncated or extended to have length n.
//The third argument specifies the order in which the returned inverse Walsh-Hadamard transform coefficients should be arranged. The order may be any of the following strings:
//
//"sequency"
//The coefficients are returned in sequency order. This is the default if order is not given.
//
//"hadamard"
//The coefficients are returned in Hadamard order.
//
//"dyadic"
//The coefficients are returned in Gray code order.
funcprot(0);
rhs= argn(2);
if(rhs<1 | rhs>3)
error("Wrong number of input arguments")
end
select(rhs)
case 1 then
y= callOctave("ifwht", x);
case 2 then
y= callOctave("ifwht", x, varargin(1));
case 3 then
y= callOctave("ifwht", x, varargin(1), varargin(2));
end
endfunction
|