Command Reference : Matrix Language Reference
  
 
@cov
Pearson product moment covariance (no d.f. adjustment).
Syntax: @cov(x)
x: matrix
Return: sym
Compute the covariance between columns of a matrix, with no d.f. correction.
where is the column vector corresponding to the i-th row of the matrix, are the corresponding means, and is the number of rows of the matrix.
Examples
matrix x = @mnrnd(300, 5)
sym cov = @covp(@inner(x))
computes the non d.f. corrected covariance matrix of the randomly generated X.
Cross-references
See also @covs and @cor.