![]() |
displayPURPOSE
Displays the information of a Gaussian (mean and covariance).
SYNOPSIS
function display(G)
DESCRIPTION
Displays the information of a Gaussian (mean and covariance). Displays the information associted with a Gaussian: the mean vector and the covariance matrix. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function display(G) 0002 % Displays the information of a Gaussian (mean and covariance). 0003 % 0004 % Displays the information associted with a Gaussian: the mean vector and 0005 % the covariance matrix. 0006 0007 display(G.m); 0008 display(G.S); |