PsiLAB Help Manual Page

Section: High level matrix functions

Name: print_fmat

Print the content of a float matrix.
Only usefull for 1 or 2 dimensional matrices. Examples:
[] let f = fmatrix ~const:[1.0,2.0,3.0;4.0,5.0,6.0] () ;; 
val f : (float, '_a, '_b) Matrix.t = <abstr> 
[] print_fmat f ;; 
| 	 1 	 2 	 3 | 
| 	 4 	 5 	 6 | 

- : unit = () 

Printed by PsiLAB