Package org.ojalgo.structure
Interface MutateAnyD.Fillable<N extends java.lang.Comparable<N>>
-
- All Superinterfaces:
Mutate1D
,Mutate1D.Fillable<N>
,MutateAnyD
,Structure1D
,StructureAnyD
- All Known Subinterfaces:
MutateAnyD.ModifiableReceiver<N>
,MutateAnyD.Receiver<N>
- Enclosing interface:
- MutateAnyD
public static interface MutateAnyD.Fillable<N extends java.lang.Comparable<N>> extends MutateAnyD, Mutate1D.Fillable<N>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.Mutate1D
Mutate1D.Fillable<N extends java.lang.Comparable<N>>, Mutate1D.Mixable<N extends java.lang.Comparable<N>>, Mutate1D.Modifiable<N extends java.lang.Comparable<N>>, Mutate1D.ModifiableReceiver<N extends java.lang.Comparable<N>>, Mutate1D.Receiver<N extends java.lang.Comparable<N>>, Mutate1D.Sortable
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.MutateAnyD
MutateAnyD.Fillable<N extends java.lang.Comparable<N>>, MutateAnyD.Mixable<N extends java.lang.Comparable<N>>, MutateAnyD.Modifiable<N extends java.lang.Comparable<N>>, MutateAnyD.ModifiableReceiver<N extends java.lang.Comparable<N>>, MutateAnyD.Receiver<N extends java.lang.Comparable<N>>
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.Structure1D
Structure1D.BasicMapper<T>, Structure1D.IndexMapper<T>, Structure1D.IntIndex, Structure1D.Logical<S extends Structure1D,B extends Structure1D.Logical<S,B>>, Structure1D.LongIndex, Structure1D.LoopCallback
-
Nested classes/interfaces inherited from interface org.ojalgo.structure.StructureAnyD
StructureAnyD.IntReference, StructureAnyD.Logical<S extends StructureAnyD,B extends StructureAnyD.Logical<S,B>>, StructureAnyD.LongReference, StructureAnyD.ReducibleTo1D<R extends Structure1D>, StructureAnyD.ReducibleTo2D<R extends Structure2D>, StructureAnyD.ReferenceCallback, StructureAnyD.ReferenceMapper, StructureAnyD.Reshapable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default void
fillCompatible(AccessAnyD<N> left, BinaryFunction<N> operator, AccessAnyD<N> right)
'this' needs to be of a size compatible with the 'left' and 'right' matrices.void
fillSet(int dimension, long dimensionalIndex, N value)
void
fillSet(int dimension, long dimensionalIndex, NullaryFunction<?> supplier)
void
fillSet(long[] initial, int dimension, N value)
void
fillSet(long[] initial, int dimension, NullaryFunction<?> supplier)
-
Methods inherited from interface org.ojalgo.structure.Mutate1D
reset, set, set, set, set, set, set, set, set, set, set, set, set, set
-
Methods inherited from interface org.ojalgo.structure.Mutate1D.Fillable
fillAll, fillAll, fillCompatible, fillMatching, fillMatching, fillMatching, fillRange, fillRange
-
Methods inherited from interface org.ojalgo.structure.MutateAnyD
set, set, set, set, set, set, set, set, set, set, set, set, set, set
-
Methods inherited from interface org.ojalgo.structure.Structure1D
count, size
-
Methods inherited from interface org.ojalgo.structure.StructureAnyD
count, loop, loop, loopAllReferences, loopReferences, rank, shape, size
-
-
-
-
Method Detail
-
fillCompatible
default void fillCompatible(AccessAnyD<N> left, BinaryFunction<N> operator, AccessAnyD<N> right)
'this' needs to be of a size compatible with the 'left' and 'right' matrices. No checks are performed. The term "compatible" refers to MATLAB's rules for "array broadcasting". The result will be the same as if the 'left' and 'right' matrices where expanded (repeated) so that all three where of the same size, and then the operation was performed. The actual implementation may be more efficient than that.
-
fillSet
void fillSet(int dimension, long dimensionalIndex, N value)
-
fillSet
void fillSet(int dimension, long dimensionalIndex, NullaryFunction<?> supplier)
-
fillSet
void fillSet(long[] initial, int dimension, N value)
-
fillSet
void fillSet(long[] initial, int dimension, NullaryFunction<?> supplier)
-
-