From: <nir...@us...> - 2012-08-29 19:31:18
|
Revision: 10929 http://octave.svn.sourceforge.net/octave/?rev=10929&view=rev Author: nir-krakauer Date: 2012-08-29 19:31:12 +0000 (Wed, 29 Aug 2012) Log Message: ----------- fixed some typos in zscore help text Modified Paths: -------------- trunk/octave-forge/extra/NaN/inst/zscore.m Modified: trunk/octave-forge/extra/NaN/inst/zscore.m =================================================================== --- trunk/octave-forge/extra/NaN/inst/zscore.m 2012-08-29 16:54:42 UTC (rev 10928) +++ trunk/octave-forge/extra/NaN/inst/zscore.m 2012-08-29 19:31:12 UTC (rev 10929) @@ -1,13 +1,13 @@ function [i,v,m] = zscore(i,DIM) -% ZSCORE removes the mean and normalizes the data -% to a variance of 1. Can be used for Pre-Whitening of the data, too. +% ZSCORE removes the mean and normalizes data +% to a variance of 1. Can be used for pre-whitening of data, too. % % [z,r,m] = zscore(x,DIM) % z z-score of x along dimension DIM % r is the inverse of the standard deviation % m is the mean of x % -% The data x can be reconstrated with +% The data x can be reconstucted with % x = z*diag(1./r) + repmat(m,size(z)./size(m)) % z = x*diag(r) - repmat(m.*v,size(z)./size(m)) % @@ -61,4 +61,4 @@ v = 1./sqrt(mean(i.^2,DIM,W)); i = i.*repmat(v,size(i)./size(v)); % scale to var=1 - \ No newline at end of file + This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |