Hoogle Search
Within LTS Haskell 24.32 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
toVector :: Matrix -> Vector Doubledense-linear-algebra Statistics.Matrix Convert to a row-major flat vector.
type
MVector s = MVector s Doubledense-linear-algebra Statistics.Matrix.Mutable No documentation available.
type
MVector s = MVector s Doubledense-linear-algebra Statistics.Matrix.Types No documentation available.
-
dense-linear-algebra Statistics.Matrix.Types Matrix data.
-
Calculate edit distances and edit scripts between vectors. An implementation of the Wagner–Fischer dynamic programming algorithm to find the optimal edit script and cost between two sequences. The implementation in this package is specialised to sequences represented with Data.Vector but is otherwise agnostic to:
- The type of values in the vectors;
- The type representing edit operations; and
- The type representing the cost of operations.
-
fakedata Faker.Internal No documentation available.
getGroupedVectorDiff :: Eq a => Vector a -> Vector a -> Vector (Diff (Vector a))fast-myers-diff Myers.Diff Diff two Vectors with grouped results
-
fast-myers-diff Myers.Diff Diff two Vectors with grouped results using a custom equality operator
getVectorDiff :: Eq a => Vector a -> Vector a -> Vector (Diff a)fast-myers-diff Myers.Diff Diff two Vectors Prefer getGroupedVectorDiff for performance reasons.
getVectorDiffBy :: (a -> b -> Bool) -> Vector a -> Vector b -> Vector (PolyDiff a b)fast-myers-diff Myers.Diff Diff two Vectors with different types using a custom equality operator Prefer getGroupedVectorDiffBy for performance reasons.