RosettaCodeData/Task/Matrix-arithmetic/Mathematica/matrix-arithmetic.math
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

4 lines
107 B
Text

Permanent[m_List] :=
With[{v = Array[x, Length[m]]},
Coefficient[Times @@ (m.v), Times @@ v]
]