Hoogle Search
Within LTS Haskell 24.45 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
oneVector :: Color -> Position -> Vec -> VisObject Doublelearn-physics Physics.Learn Place a vector at a particular position.
probVector :: Vector C -> Vector Doublelearn-physics Physics.Learn.QuantumMat Return a vector of probabilities for a given state vector.
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.