]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/math/blas/matrices/matrices.factor
core, basis, extra: Remove DOS line endings from files.
[factor.git] / extra / math / blas / matrices / matrices.factor
index 812bd10a5b89b294b53b090870548e0c1198b899..e455d811528c42d2a0a090a55915ee27c3df5228 100644 (file)
@@ -117,7 +117,7 @@ PRIVATE>
 
 ! XXX should do a dense clone
 M: blas-matrix-base clone
-    [ 
+    [
         [ {
             [ underlying>> ]
             [ ld>> ]
@@ -168,7 +168,7 @@ M: blas-matrix-base clone
     [ 1.0 ] 2dip n*V(*)Vconj ; inline
 
 : n*M.M ( alpha A B -- alpha*A.B )
-    2dup [ Mheight ] [ Mwidth ] bi* pick <empty-matrix> 
+    2dup [ Mheight ] [ Mwidth ] bi* pick <empty-matrix>
     [ 1.0 ] dip n*M.M+n*M! ;
 
 : M. ( A B -- A.B )