Skip to content

Commit

Permalink
Added Matrix Factorizations to Analysis Namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
JannikNordmeyer committed Sep 5, 2024
1 parent 66ae18c commit 8d96096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/main/clojure/conexp/analysis.clj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
[protoconcepts :refer :all]
[random-contexts :refer :all]
[simplicial-complexes :refer :all]
[triadic-exploration :refer :all]]
[triadic-exploration :refer :all]
[matrix-factorizations]]
[conexp.math
[algebra :refer :all]
[markov :refer :all]
Expand Down
1 change: 0 additions & 1 deletion src/main/clojure/conexp/fca/matrix_factorizations.clj
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,6 @@

(defn pattern-matrices [patterns]
"Converts collection of patterns into factor matrices."
(println patterns)
[(reduce #(add-column %1 (first %2)) [] patterns)
(reduce #(add-row %1 (second %2)) [] patterns)]

Expand Down

0 comments on commit 8d96096

Please sign in to comment.