I have to declare the Matrix F in maple F := Matrix([[ 1/sqrt(5) , sqrt(5) - 1 / 2 * sqrt(5) ], [ -(1/sqrt(5)) , sqrt(5) + 1 / (2 * sqrt(5)) ]]) Is this the correct way to do it?
Follow Math Help Forum on Facebook and Google+
Code: with(LinearAlgebra): F := linalg[matrix](2, 2, [1/sqrt(5), sqrt(5)-(1/2)*sqrt(5), -1/sqrt(5), sqrt(5)+1/(2*sqrt(5))]) This works in Maple 11
with(LinearAlgebra): F := linalg[matrix](2, 2, [1/sqrt(5), sqrt(5)-(1/2)*sqrt(5), -1/sqrt(5), sqrt(5)+1/(2*sqrt(5))])
View Tag Cloud