Uses of Interface
org.ojalgo.structure.ElementView1D
-
Packages that use ElementView1D Package Description org.ojalgo.array org.ojalgo.matrix.store org.ojalgo.structure -
-
Uses of ElementView1D in org.ojalgo.array
Classes in org.ojalgo.array that implement ElementView1D Modifier and Type Class Description static class
SparseArray.NonzeroView<N extends java.lang.Comparable<N>>
-
Uses of ElementView1D in org.ojalgo.matrix.store
Methods in org.ojalgo.matrix.store that return ElementView1D Modifier and Type Method Description ElementView1D<N,?>
ColumnsSupplier.SingleView. elements()
ElementView1D<N,?>
RowsSupplier.SingleView. elements()
ElementView1D<N,?>
ColumnsSupplier.SingleView. nonzeros()
ElementView1D<N,?>
RowsSupplier.SingleView. nonzeros()
-
Uses of ElementView1D in org.ojalgo.structure
Classes in org.ojalgo.structure with type parameters of type ElementView1D Modifier and Type Interface Description interface
ElementView1D<N extends java.lang.Comparable<N>,V extends ElementView1D<N,V>>
Subinterfaces of ElementView1D in org.ojalgo.structure Modifier and Type Interface Description interface
ElementView2D<N extends java.lang.Comparable<N>,V extends ElementView2D<N,V>>
interface
ElementViewAnyD<N extends java.lang.Comparable<N>,V extends ElementViewAnyD<N,V>>
Classes in org.ojalgo.structure that implement ElementView1D Modifier and Type Class Description static class
Access1D.ElementView<N extends java.lang.Comparable<N>>
static class
Access2D.ElementView<N extends java.lang.Comparable<N>>
static class
AccessAnyD.ElementView<N extends java.lang.Comparable<N>>
Fields in org.ojalgo.structure declared as ElementView1D Modifier and Type Field Description private ElementView1D<N,?>
Access2D.ElementView. myDelegate1D
private ElementView1D<N,?>
AccessAnyD.ElementView. myDelegate1D
Methods in org.ojalgo.structure that return ElementView1D Modifier and Type Method Description default ElementView1D<N,?>
Access1D. elements()
Returns an Iterable of ElementView1D.default ElementView1D<N,?>
Access1D. nonzeros()
Similar toAccess1D.elements()
but avoids elements that are structurally known to be zero.Constructors in org.ojalgo.structure with parameters of type ElementView1D Constructor Description ElementView(ElementView1D<N,?> delegate, long structure)
ElementView(ElementView1D<N,?> delegate, long[] structure)
-