numeric-prelude-0.1.2: An experimental alternative hierarchy of numeric type classesSource codeContentsIndex
Algebra.OccasionallyScalar
Description

There are several types of numbers where a subset of numbers can be considered as set of scalars.

  • A '(Complex.T Double)' value can be converted to Double if the imaginary part is zero.
  • A value with physical units can be converted to a scalar if there is no unit.

Of course this can be cascaded, e.g. a complex number with physical units can be converted to a scalar if there is both no imaginary part and no unit.

This is somewhat similar to the multi-type classes NormedMax.C and friends.

I hesitate to define an instance for lists to avoid the mess known of MatLab. But if you have an application where you think you need this instance definitely I'll think about that, again.

Documentation
class C a v whereSource
Methods
toScalar :: v -> aSource
toMaybeScalar :: v -> Maybe aSource
fromScalar :: a -> vSource
show/hide Instances
C Double Double
C Float Float
(Show v, C v, C v, C a v) => C a (T v)
(IsScalar u, C a b) => C a (T u b)
(C a v, Show v) => C a (T a v)
C a v => C a (T i v)
(C a, Ord a, C a v, Show v, C a v) => C a (T a v)
toScalarDefault :: C a v => v -> aSource
toScalarShow :: (C a v, Show v) => v -> aSource
Produced by Haddock version 2.4.2