Package eu.simuline.octave.type
Class OctaveInt
- java.lang.Object
-
- eu.simuline.octave.type.matrix.AbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
-
- eu.simuline.octave.type.OctaveInt
-
- All Implemented Interfaces:
OctaveObject
public final class OctaveInt extends AbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
Represents a matrix of ints.
-
-
Field Summary
-
Fields inherited from class eu.simuline.octave.type.matrix.AbstractGenericMatrix
dataL, size
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
get(int... pos)
Get the value.protected int[]
getDataA()
Returns the data store as an array.String
getPlainString(int pos)
Returns the string representation of the given plain position.protected int
initL(int[] data, int size)
protected it.unimi.dsi.fastutil.ints.IntArrayList
newL(int size)
Returns a new data store with given size and entries carrying the default value.void
set(int value, int... pos)
Set the value resizing by need.void
setPlain(int value, int pos)
Set the value assuming resize is not necessary.void
setPlain(String value, int pos)
Sets the entry with plain positionpos
to value parsing the stringvalue
.OctaveInt
shallowCopy()
Make a shallow copy of this object.-
Methods inherited from class eu.simuline.octave.type.matrix.AbstractGenericMatrix
dataSize, equals, getSize, getSizeLength, hashCode, main, pos2ind, resizeUp, toString
-
-
-
-
Constructor Detail
-
OctaveInt
public OctaveInt(int... size)
Create new matrix.- Parameters:
size
-
-
OctaveInt
public OctaveInt(int[] data, int... size)
Constructor that reuses the input data.- Parameters:
data
-size
-
-
OctaveInt
protected OctaveInt(OctaveInt o)
Copy constructor.- Parameters:
o
-
-
-
Method Detail
-
newL
protected final it.unimi.dsi.fastutil.ints.IntArrayList newL(int size)
Description copied from class:AbstractGenericMatrix
Returns a new data store with given size and entries carrying the default value. The latter depends on the types: false for boolean, 0 for int, 0.0 for double and null for GenericMatrix's.- Specified by:
newL
in classAbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
- Returns:
- new D[size]
-
initL
protected final int initL(int[] data, int size)
- Specified by:
initL
in classAbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
-
getDataA
protected int[] getDataA()
Description copied from class:AbstractGenericMatrix
Returns the data store as an array. There are subclasses with array of primitive types.- Specified by:
getDataA
in classAbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
-
set
public final void set(int value, int... pos)
Set the value resizing by need.- Parameters:
value
-pos
-- See Also:
setPlain(int, int)
-
setPlain
public final void setPlain(int value, int pos)
Set the value assuming resize is not necessary.- Parameters:
value
-pos
-- See Also:
set(int, int[])
-
setPlain
public final void setPlain(String value, int pos)
Description copied from class:AbstractGenericMatrix
Sets the entry with plain positionpos
to value parsing the stringvalue
. Note that this base class cannot provide setter methods for java's primitive data types.- Specified by:
setPlain
in classAbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
pos
- see e.g.AbstractObjectMatrix.setPlain(String, int)
andOctaveDouble.setPlain(String, int)
-
get
public final int get(int... pos)
Get the value.- Parameters:
pos
-- Returns:
- value at pos
-
getPlainString
public final String getPlainString(int pos)
Description copied from class:AbstractGenericMatrix
Returns the string representation of the given plain position.- Specified by:
getPlainString
in classAbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
-
shallowCopy
public OctaveInt shallowCopy()
Description copied from interface:OctaveObject
Make a shallow copy of this object. In general when anOctaveObject
is returned from a getter, e.g. onOctaveStruct
orOctaveStruct
, a shallow copy is returned in order to follow the way octave behaves. This method is used to make that copy.- Specified by:
shallowCopy
in interfaceOctaveObject
- Specified by:
shallowCopy
in classAbstractGenericMatrix<int[],it.unimi.dsi.fastutil.ints.IntArrayList>
- Returns:
- a shallow copy of this
-
-