git-svn-id: http://moon:8086/svn/matlab/trunk@91 801c6759-fa7c-4059-a304-17956f83a07c
11 lines
319 B
Matlab
11 lines
319 B
Matlab
function [Z] = zca2(x)
|
|
epsilon = 1e-4;
|
|
% You should be able to use the code from your PCA/ZCA exercise
|
|
% Retain all of the components from the ZCA transform (i.e. do not do
|
|
% dimensionality reduction)
|
|
|
|
% x is the input patch data of size
|
|
% z is the ZCA transformed data. The dimenison of z = x.
|
|
|
|
%%% YOUR CODE HERE %%%
|