JuliaFloat32Vector¶
jarray32.spad line 1 [edit on github]
This domain provides a fast JuliaFloat32
vector type with no bound checking on elt's
. Minimum index is 1.
- #: % -> NonNegativeInteger
from Aggregate
- *: (%, JuliaFloat32) -> %
- *: (Integer, %) -> %
- *: (JuliaFloat32, %) -> %
- +: (%, %) -> %
- <=: (%, %) -> Boolean
from PartialOrder
- <: (%, %) -> Boolean
from PartialOrder
- >=: (%, %) -> Boolean
from PartialOrder
- >: (%, %) -> Boolean
from PartialOrder
- any?: (JuliaFloat32 -> Boolean, %) -> Boolean
- coerce: % -> OutputForm
from CoercibleTo OutputForm
- concat: (%, %) -> %
- concat: (%, JuliaFloat32) -> %
- concat: (JuliaFloat32, %) -> %
- concat: List % -> %
- construct: List JuliaFloat32 -> %
from Collection JuliaFloat32
- convert: % -> InputForm
from ConvertibleTo InputForm
- copy!: (%, %) -> %
copy!(b,a)
copies efficiently a tob
. No check are done on arrays dimension.
- count: (JuliaFloat32 -> Boolean, %) -> NonNegativeInteger
- count: (JuliaFloat32, %) -> NonNegativeInteger
- cross: (%, %) -> %
- delete: (%, Integer) -> %
- delete: (%, UniversalSegment Integer) -> %
- dot: (%, %) -> JuliaFloat32
- elt: (%, Integer) -> JuliaFloat32
from Eltable(Integer, JuliaFloat32)
- elt: (%, Integer, JuliaFloat32) -> JuliaFloat32
from EltableAggregate(Integer, JuliaFloat32)
- elt: (%, UniversalSegment Integer) -> %
from Eltable(UniversalSegment Integer, %)
- entries: % -> List JuliaFloat32
from IndexedAggregate(Integer, JuliaFloat32)
- entry?: (JuliaFloat32, %) -> Boolean
from IndexedAggregate(Integer, JuliaFloat32)
- eval: (%, Equation JuliaFloat32) -> % if JuliaFloat32 has Evalable JuliaFloat32
from Evalable JuliaFloat32
- eval: (%, JuliaFloat32, JuliaFloat32) -> % if JuliaFloat32 has Evalable JuliaFloat32
- eval: (%, List Equation JuliaFloat32) -> % if JuliaFloat32 has Evalable JuliaFloat32
from Evalable JuliaFloat32
- eval: (%, List JuliaFloat32, List JuliaFloat32) -> % if JuliaFloat32 has Evalable JuliaFloat32
- every?: (JuliaFloat32 -> Boolean, %) -> Boolean
- fill!: (%, JuliaFloat32) -> %
from IndexedAggregate(Integer, JuliaFloat32)
- find: (JuliaFloat32 -> Boolean, %) -> Union(JuliaFloat32, failed)
from Collection JuliaFloat32
- first: % -> JuliaFloat32
from IndexedAggregate(Integer, JuliaFloat32)
- first: (%, NonNegativeInteger) -> %
- hash: % -> SingleInteger if JuliaFloat32 has Hashable
from Hashable
- hashUpdate!: (HashState, %) -> HashState if JuliaFloat32 has Hashable
from Hashable
- index?: (Integer, %) -> Boolean
from IndexedAggregate(Integer, JuliaFloat32)
- indices: % -> List Integer
from IndexedAggregate(Integer, JuliaFloat32)
- insert: (%, %, Integer) -> %
- insert: (JuliaFloat32, %, Integer) -> %
- jlApply: (String, %) -> %
jlApply(func, v)
appliesfunc
to argumentv
and returns a JuliaFloat32Vector.
- jlApply: (String, %) -> JuliaFloat32
jlApply(func, v)
appliesfunc
to argumentv
and returns a JuliaFloat32
.
- jlApply: (String, %, %, %) -> Void
jlApply(func, v1, v2, v3)
appliesfunc
to argumentsv1
,v2
andv3
.
- jlApply: (String, %, JuliaFloat32) -> JuliaFloat32
jlApply(func, v, val)
appliesfunc
to argumentsv
and val and returns a JuliaFloat32
.
- jlApprox?: (%, %) -> Boolean
jlApprox?(x,y)
computes inexact equality comparison with default parameters. Two numbers compare equal if their relative distance or their absolute distance is within tolerance bounds. Applied component-vise.
- jlDisplay: % -> Void
jldisplay(
v
) pretty printsv
(à
la Julia).
- juliaVPrint: Boolean -> Boolean
juliaVPrint(b)
defines whether or not FriCAS uses the printing version of Julia for vectors instead of its OutputForm version. Returns previous value. By default it is the Julia version.
- latex: % -> String
from SetCategory
- leftTrim: (%, JuliaFloat32) -> %
- length: % -> JuliaFloat32
- less?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- map!: (JuliaFloat32 -> JuliaFloat32, %) -> %
- map: ((JuliaFloat32, JuliaFloat32) -> JuliaFloat32, %, %) -> %
- map: (JuliaFloat32 -> JuliaFloat32, %) -> %
- max: % -> JuliaFloat32
- max: (%, %) -> %
from OrderedSet
- max: ((JuliaFloat32, JuliaFloat32) -> Boolean, %) -> JuliaFloat32
- maxIndex: % -> Integer
from IndexedAggregate(Integer, JuliaFloat32)
- member?: (JuliaFloat32, %) -> Boolean
- members: % -> List JuliaFloat32
- merge: (%, %) -> %
- merge: ((JuliaFloat32, JuliaFloat32) -> Boolean, %, %) -> %
- min: % -> JuliaFloat32
- min: (%, %) -> %
from OrderedSet
- minIndex: % -> Integer
from IndexedAggregate(Integer, JuliaFloat32)
- more?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- new: (NonNegativeInteger, JuliaFloat32) -> %
- nrand: NonNegativeInteger -> %
nrand(n)
returns a normally distributed Julia vector of sizen
withmean=0
and standarddeviation=1
.
- outerProduct: (%, %) -> Matrix JuliaFloat32
- parts: % -> List JuliaFloat32
- position: (JuliaFloat32 -> Boolean, %) -> Integer
- position: (JuliaFloat32, %) -> Integer
- position: (JuliaFloat32, %, Integer) -> Integer
- qelt: (%, Integer) -> JuliaFloat32
from EltableAggregate(Integer, JuliaFloat32)
- qnew: NonNegativeInteger -> %
qnew(n)
returns an unitialized vector of dimensionn
.
- qsetelt!: (%, Integer, JuliaFloat32) -> JuliaFloat32
from EltableAggregate(Integer, JuliaFloat32)
- reduce: ((JuliaFloat32, JuliaFloat32) -> JuliaFloat32, %) -> JuliaFloat32
from Collection JuliaFloat32
- reduce: ((JuliaFloat32, JuliaFloat32) -> JuliaFloat32, %, JuliaFloat32) -> JuliaFloat32
from Collection JuliaFloat32
- reduce: ((JuliaFloat32, JuliaFloat32) -> JuliaFloat32, %, JuliaFloat32, JuliaFloat32) -> JuliaFloat32
from Collection JuliaFloat32
- remove: (JuliaFloat32 -> Boolean, %) -> %
from Collection JuliaFloat32
- remove: (JuliaFloat32, %) -> %
from Collection JuliaFloat32
- removeDuplicates: % -> %
from Collection JuliaFloat32
- reverse!: % -> %
- reverse: % -> %
- rightTrim: (%, JuliaFloat32) -> %
- select: (JuliaFloat32 -> Boolean, %) -> %
from Collection JuliaFloat32
- setelt!: (%, Integer, JuliaFloat32) -> JuliaFloat32
from EltableAggregate(Integer, JuliaFloat32)
- setelt!: (%, UniversalSegment Integer, JuliaFloat32) -> JuliaFloat32
- size?: (%, NonNegativeInteger) -> Boolean
from Aggregate
- smaller?: (%, %) -> Boolean
from Comparable
- sort!: % -> %
- sort!: ((JuliaFloat32, JuliaFloat32) -> Boolean, %) -> %
- sort: % -> %
- sort: ((JuliaFloat32, JuliaFloat32) -> Boolean, %) -> %
- sorted?: % -> Boolean
- sorted?: ((JuliaFloat32, JuliaFloat32) -> Boolean, %) -> Boolean
- swap!: (%, Integer, Integer) -> Void
from IndexedAggregate(Integer, JuliaFloat32)
- trim: (%, JuliaFloat32) -> %
- urand01: NonNegativeInteger -> %
urand01(n)
returns a uniformly (0$NNI..1) distributed Julia vector of sizen
.
- urand: (NonNegativeInteger, JuliaFloat32) -> %
urand(n, x)
returns a uniformly (0$NNI..x
) distributed Julia vector of sizen
.
- vector: List JuliaFloat32 -> %
vector(l)
converts the listl
to a vector.
- zero: NonNegativeInteger -> %
Eltable(Integer, JuliaFloat32)
Eltable(UniversalSegment Integer, %)
EltableAggregate(Integer, JuliaFloat32)
Evalable JuliaFloat32 if JuliaFloat32 has Evalable JuliaFloat32
FiniteLinearAggregate JuliaFloat32
Hashable if JuliaFloat32 has Hashable
HomogeneousAggregate JuliaFloat32
IndexedAggregate(Integer, JuliaFloat32)
InnerEvalable(JuliaFloat32, JuliaFloat32) if JuliaFloat32 has Evalable JuliaFloat32
JuliaVectorCategory JuliaFloat32