?? remmean.m
字號:
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,v 1.2 2003/04/05 14:23:58 jarmo Exp $newVectors = zeros (size (vectors));meanValue = mean (vectors')';newVectors = vectors - meanValue * ones (1,size (vectors, 2));
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -