dummykernel.m.svn-base
来自「a function inside machine learning」· SVN-BASE 代码 · 共 12 行
SVN-BASE
12 行
function dK = dummyKernel(X1Indices, X2Indices, kernelParams)
%A kernel which is already computed and stored in memory as the global
%variable 'dummyK'. X1 And X2 are just indices into this matrix
kernelName = kernelParams.kernelName;
d = kernelParams.data;
dK = getDataFieldValue(d, kernelName, X1Indices, X2Indices);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?