summaryrefslogtreecommitdiff
path: root/macros/fftn.sci
blob: ba7f3524cfe4a467fa3d3cf134eb90928ef4a454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function y = fftn(A, SIZE)

funcprot(0);
rhs = argn(2)
if(rhs<1 | rhs>2)
error("Wrong number of input arguments.");
end

	select(rhs)
	case 1 then
	y = callOctave("fftn",A);
	case 2 then
	y = callOctave("fftn",A, SIZE);
	end
endfunction