Browse Source

Merge pull request #688 from kayanme/master

Fixed incorrectly implemented row reducing
pull/697/head
Christoph Ruegg 6 years ago
committed by GitHub
parent
commit
df79708940
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/FSharp/LinearAlgebra.Matrix.fs

2
src/FSharp/LinearAlgebra.Matrix.fs

@ -158,7 +158,7 @@ module Matrix =
let inline reduceCols f (m: #Matrix<_>) = m |> toColSeq |> Seq.reduce f
/// Reduce all rows of a matrix.
let inline reduceRows f (m: #Matrix<_>) = m |> toColSeq |> Seq.reduce f
let inline reduceRows f (m: #Matrix<_>) = m |> toRowSeq |> Seq.reduce f
/// Checks whether there is an entry in the matrix that satisfies a predicate.

Loading…
Cancel
Save