RosettaCodeData/Task/Matrix-arithmetic/Tcl/matrix-arithmetic-2.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

8 lines
134 B
Tcl

set mat {
{1 2 3 4}
{4 5 6 7}
{7 8 9 10}
{10 11 12 13}
}
puts [::math::linearalgebra::det $mat]
puts [permanent $mat]