Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Quafadas committed Sep 13, 2024
1 parent e98fb1a commit bf86749
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,8 @@ object site extends SiteModule {

override def moduleDeps = Seq(vecxt.jvm)

override def allScalacOptions: Target[Seq[String]] = super.allScalacOptions() ++ vecIncubatorFlag

override def scalaDocOptions = super.scalaDocOptions

}
4 changes: 3 additions & 1 deletion site/docs/_docs/matrix.mdoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ val nestedArr = NArray(
)

val matrix = Matrix.fromRows(nestedArr)
val matrix = Matrix.fromColumns(nestedArr)
val matrix2 = Matrix.fromColumns(nestedArr)

println(matrix.shape)

println(matrix.print)

println(matrix2.print)

println(matrix.col(1).print)

println(matrix.row(2).print)
Expand Down

0 comments on commit bf86749

Please sign in to comment.