cov
Covariance
📝Syntax
C = cov(M)
📥Input Arguments
Parameter Description
M a vector or matrix
📤Output Arguments
Parameter Description
V Covariance of M.
📄Description

C = cov(M) returns the covariance.

💡Examples
M = [4 -7 3; 1 4 -2; 10 7 9];
C = cov(M)
🔗See Also
varmean
🕔Version History
Version Description
1.0.0 initial version
Edit this page on GitHub