RosettaCodeData/Task/Matrix-arithmetic/Mathematica/matrix-arithmetic.math

5 lines
107 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
Permanent[m_List] :=
With[{v = Array[x, Length[m]]},
Coefficient[Times @@ (m.v), Times @@ v]
]