Question: LinearAlgebra Matrix won't work

I'm trying to do some work with a large matrix. I was using with(linalg), but I need to use LinearAlgebra now. However, if I don't use the command "matrix" (lowercase m) then I get this as an output:

 

> restart:
> with(LinearAlgebra);
> with(Statistics):
> infolevel[Statistics]:=1:
> interface(displayprecision=3):
> g:=Matrix([
> [7.4, 2.8, 6.1, 1.9],
> [6.9, 3.1, 5.4, 2.1],
> [5.8, 2.7, 5.1, 1.9],
> [6.9, 3.2, 5.7, 2.3],
> [6.3, 3.3, 6.0, 2.5],
> [6.3, 2.7, 4.9, 1.8],
> [7.2, 3.0, 5.8, 1.6],
> [6.7, 2.5, 5.8, 1.8],
> [6.8, 3.2, 5.9, 2.3],
> [6.7, 3.1, 5.6, 2.4],
> [7.1, 3.0, 5.9, 2.1],
> [6.1, 2.6, 5.6, 1.4],
> [6.3, 2.5, 5.0, 1.9],
> [4.9, 2.5, 4.5, 1.7],
> [6.5, 3.0, 5.2, 2.0],
> [6.8, 3.0, 5.5, 2.1],
> [6.0, 3.0, 4.8, 1.8],
> [6.0, 2.2, 5.0, 1.5],
> [5.7, 2.5, 5.0, 2.0],
> [6.1, 3.0, 4.9, 1.8]]);
                         [ 20 x 4 Matrix        ]
                    g := [ Data Type: anything  ]
                         [ Storage: rectangular ]
                         [ Order: Fortran_order ]

Why won't it display the matrix? Is it because I'm using Maple 10?

Please Wait...