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.
stateVectorFromWavefunction :: R -> R -> Int -> (R -> C) -> Vector Clearn-physics Physics.Learn.Schrodinger1D Transform a wavefunction into a state vector.
displayVectorField :: Color -> Double -> [Position] -> VectorField -> VisObject Doublelearn-physics Physics.Learn.Visual.VisTools Display a vector field.
oneVector :: Color -> Position -> Vec -> VisObject Doublelearn-physics Physics.Learn.Visual.VisTools Place a vector at a particular position.
type
ColumnVector (m :: Nat) = Matrix m 1matrix-static Data.Matrix.Static A column vector (a matrix with one column).
-
matrix-static Data.Matrix.Static A row vector (a matrix with one row).
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.
getMatrixAsVector :: forall (m :: Nat) (n :: Nat) a . Matrix m n a -> Vector amatrix-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.
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.
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.
hFromVectorWith :: HStructure (s :: Type -> Type) -> s Double -> Positions -> s Doublemcmc Mcmc.Proposal.Hamiltonian.Common Put those values back into the complete state.