PsiLAB Help Manual
Page
Section:
High level matrix functions
Name:
print_imat
Print the content of an integer matrix.
Only usefull for 1 or 2 dimensional matrices.
[] let f = imatrix ~const:[1,2,3;4,5,6] () ;;
val f : (int, '_a, '_b) Matrix.t = <abstr>
[] print_imat f ;;
| 1 2 3 |
| 4 5 6 |
- : unit = ()
Printed by PsiLAB