remmean.m
来自「I developed an algorithm for using local」· M 代码 · 共 16 行
M
16 行
function [newVectors, meanValue] = remmean(vectors);%REMMEAN - remove the mean from vectors%% [newVectors, meanValue] = remmean(vectors);%% Removes the mean of row vectors.% Returns the new vectors and the mean.%% This function is needed by FASTICA and FASTICAG% @(#)$Id: remmean.m 635 2005-05-20 12:48:06Z grp14818 $newVectors = zeros (size (vectors));meanValue = mean (vectors')';newVectors = vectors - meanValue * ones (1,size (vectors, 2));
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?