innerprod.m
来自「纹理合成matlab源代码,非常好」· M 代码 · 共 12 行
M
12 行
% RES = innerProd(MTX)%% Compute (MTX' * MTX) efficiently (i.e., without copying the matrix)function res = innerProd(mtx)%% NOTE: THIS CODE SHOULD NOT BE USED! (MEX FILE IS CALLED INSTEAD)fprintf(1,'WARNING: You should compile the MEX version of "innerProd.c",\n found in the MEX subdirectory of matlabPyrTools, and put it in your matlab path. It is MUCH faster.\n');res = mtx' * mtx;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?