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