dct1.m - Perform the DCT-I transform on the column(s) of
f
.idct1.m - Perform the inverse DCT-I transform on the column(s) of
d
.nav.m - This script allows you to easily navigate between directories. It was designed to make navigation easier and faster when using MATLAB via a terminal. This script can also be used to run scripts.
unique_stable.m -
[c,ia,ic] = unique_stable(a);
Returns the values ofc
in the same order as ina
. This is equivalent to[c,ia,ic] = unique(c,'stable');
in newer versions of MATLAB.