c=dstiii(f); c=dstiii(f,L); c=dstiii(f,[],dim); c=dstiii(f,L,dim);
dstiii(f) computes the discrete sine transform of type III of the input signal f. If f is multi-dimensional, the transformation is applied along the first non-singleton dimension.
dstiii(f,L) zero-pads or truncates f to length L before doing the transformation.
dstiii(f,[],dim) or dstiii(f,L,dim) applies the transformation along dimension dim.
The transform is real (output is real if input is real) and orthonormal.
This is the inverse of dstii.
Let f be a signal of length L, let c=dstiii(f) and define the vector w of length L by
Then
The following figures show the first 4 basis functions of the DSTIII of length 20:
% The dstii is the adjoint of dstiii. F=dstii(eye(20)); for ii=1:4 subplot(4,1,ii); stem(F(:,ii)); end;
K. Rao and P. Yip. Discrete Cosine Transform, Algorithms, Advantages, Applications. Academic Press, 1990.
M. V. Wickerhauser. Adapted wavelet analysis from theory to software. Wellesley-Cambridge Press, Wellesley, MA, 1994.