]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/matrices/laplace/laplace.factor
core: Rename iota to <iota> so we can have TUPLE: iota ... ; instead of TUPLE: iota...
[factor.git] / extra / math / matrices / laplace / laplace.factor
index 817fa89d9a9845bc1a2f5949f13aee3691d8c740..a38d152c68ab28545fb27015481930f78af5c342 100644 (file)
@@ -18,7 +18,7 @@ M: missing length seq>> length 1 - ;
 INSTANCE: missing immutable-sequence
 
 : first-sub-matrix ( matrix -- first-row seq )
-    [ unclip-slice swap ] [ length iota ] bi
+    [ unclip-slice swap ] [ length <iota> ] bi
     [ '[ _ <missing> ] map ] with map ;
 
 :: laplace-expansion ( row matrix -- x )