jalla-0.2.0.1: Higher level functions for linear algebra. Wraps BLAS and LAPACKE.

Safe HaskellSafe
LanguageHaskell98

Numeric.Jalla.Indexable

Description

Indexable objects for Jalla.

Synopsis

Documentation

class Indexable o i e | o -> i, o -> e where Source

Mathematical objects that can be indexed, such as matrices and vectors.

Methods

(!) Source

Arguments

:: o

The object to be indexed

-> i

The index

-> e

The element

Get the element at a given index from an indexable object.