?? kpca_map.m
字號:
function y = kpca_map(x,basis)%KPCA_MAP maps input vectors onto the kpca subspace.%% usage% psi = kpca_map(x,basis);%% input% x matrix of column vectors, containing the input% vectors% basis a kpca basis, generated by kpca_calc (see there)%% output% y matrix of column vectors, containing the mapped% input vectors%% see also% kpca_plot, kpca_calc%% STH * 12MAR2002% column of xsxsc = size(basis.xs,2);% calc kernel matrix for xs and xKxsx = kpca_matrix(basis.xs,x,basis.kernel);% note, that "repmat..." ensures centering of xsy = basis.V'*(Kxsx - repmat(sum(Kxsx,1),[xsc 1])/xsc);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -