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.

  1. stateVectorFromWavefunction :: R -> R -> Int -> (R -> C) -> Vector C

    learn-physics Physics.Learn.Schrodinger1D

    Transform a wavefunction into a state vector.

  2. displayVectorField :: Color -> Double -> [Position] -> VectorField -> VisObject Double

    learn-physics Physics.Learn.Visual.VisTools

    Display a vector field.

  3. oneVector :: Color -> Position -> Vec -> VisObject Double

    learn-physics Physics.Learn.Visual.VisTools

    Place a vector at a particular position.

  4. type ColumnVector (m :: Nat) = Matrix m 1

    matrix-static Data.Matrix.Static

    A column vector (a matrix with one column).

  5. type RowVector = Matrix 1

    matrix-static Data.Matrix.Static

    A row vector (a matrix with one row).

  6. colVector :: forall (n :: Nat) a . KnownNat n => Vector a -> Maybe (ColumnVector n a)

    matrix-static Data.Matrix.Static

    O(1). Represent a vector as a one row matrix.

  7. getMatrixAsVector :: forall (m :: Nat) (n :: Nat) a . Matrix m n a -> Vector a

    matrix-static Data.Matrix.Static

    O(rows*cols). Transform a Matrix to a Vector of size rows*cols. This is equivalent to get all the rows of the matrix using getRow and then append them, but far more efficient.

  8. rowVector :: forall (m :: Nat) a . KnownNat m => Vector a -> Maybe (RowVector m a)

    matrix-static Data.Matrix.Static

    O(1). Represent a vector as a one row matrix.

  9. fromVectorT :: Vector (Link a) -> IO (Trace a)

    mcmc Mcmc.Chain.Trace

    Create a trace from a vector. The length is determined by the vector. Call error if the vector is empty.

  10. hFromVectorWith :: HStructure (s :: Type -> Type) -> s Double -> Positions -> s Double

    mcmc Mcmc.Proposal.Hamiltonian.Common

    Put those values back into the complete state.

Page 108 of many | Previous | Next