LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
trace_var.m
1function v = trace_var(S)
2% [v]=trace_var(S)
3%
4% DESCRIPTION
5% Compute the variance for trace S
6
7v = var(S);
8end