blob: deed0f9915192b6a29b32d2493edad0ef024fea0 (
plain)
1
2
3
4
5
6
7
|
//SCI2C: DEFAULT_PRECISION= FLOAT
//test for inverse discrete cosine tranfrom
function testidct()
b=[1 2 3;4 5 6+%i] //declaring complex matrix
y=idct(b) //calling idct
disp(y)
endfunction
|