Class DenseObjectMatrix1D
- java.lang.Object
-
- cern.colt.PersistentObject
-
- cern.colt.matrix.impl.AbstractMatrix
-
- cern.colt.matrix.impl.AbstractMatrix1D
-
- cern.colt.matrix.ObjectMatrix1D
-
- cern.colt.matrix.impl.DenseObjectMatrix1D
-
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Cloneable
public class DenseObjectMatrix1D extends ObjectMatrix1D
Dense 1-d matrix (aka vector) holding Object elements. First see the package summary and javadoc tree view to get the broad picture.Implementation:
Internally holds one single contigous one-dimensional array. Note that this implementation is not synchronized.
Memory requirements:
memory [bytes] = 8*size(). Thus, a 1000000 matrix uses 8 MB.
Time complexity:
O(1) (i.e. constant time) for the basic operations get, getQuick, set, setQuick and size,
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class cern.colt.PersistentObject
serialVersionUID
-
-
Constructor Summary
Constructors Constructor and Description DenseObjectMatrix1D(int size)Constructs a matrix with a given number of cells.DenseObjectMatrix1D(java.lang.Object[] values)Constructs a matrix with a copy of the given values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method and Description ObjectMatrix1Dassign(java.lang.Object[] values)Sets all cells to the state specified by values.ObjectMatrix1Dassign(ObjectFunction function)Assigns the result of a function to each cell; x[i] = function(x[i]).ObjectMatrix1Dassign(ObjectMatrix1D source)Replaces all cell values of the receiver with the values of another matrix.ObjectMatrix1Dassign(ObjectMatrix1D y, ObjectObjectFunction function)Assigns the result of a function to each cell; x[i] = function(x[i],y[i]).java.lang.ObjectgetQuick(int index)Returns the matrix cell value at coordinate index.ObjectMatrix1Dlike(int size)Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size.ObjectMatrix2Dlike2D(int rows, int columns)Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver.voidsetQuick(int index, java.lang.Object value)Sets the matrix cell at coordinate index to the specified value.voidswap(ObjectMatrix1D other)Swaps each element this[i] with other[i].voidtoArray(java.lang.Object[] values)Fills the cell values into the specified 1-dimensional array.-
Methods inherited from class cern.colt.matrix.ObjectMatrix1D
aggregate, aggregate, assign, cardinality, copy, equals, equals, get, getNonZeros, like, set, toArray, toString, viewFlip, viewPart, viewSelection, viewSelection, viewSorted, viewStrides
-
Methods inherited from class cern.colt.matrix.impl.AbstractMatrix1D
checkSize, size, toStringShort
-
Methods inherited from class cern.colt.matrix.impl.AbstractMatrix
ensureCapacity, trimToSize
-
Methods inherited from class cern.colt.PersistentObject
clone
-
-
-
-
Constructor Detail
-
DenseObjectMatrix1D
public DenseObjectMatrix1D(java.lang.Object[] values)
Constructs a matrix with a copy of the given values. The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.- Parameters:
values- The values to be filled into the new matrix.
-
DenseObjectMatrix1D
public DenseObjectMatrix1D(int size)
Constructs a matrix with a given number of cells. All entries are initially 0.- Parameters:
size- the number of cells the matrix shall have.- Throws:
java.lang.IllegalArgumentException- if size<0.
-
-
Method Detail
-
assign
public ObjectMatrix1D assign(java.lang.Object[] values)
Sets all cells to the state specified by values. values is required to have the same number of cells as the receiver.The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa.
- Overrides:
assignin classObjectMatrix1D- Parameters:
values- the values to be filled into the cells.- Returns:
- this (for convenience only).
- Throws:
java.lang.IllegalArgumentException- if values.length != size().
-
assign
public ObjectMatrix1D assign(ObjectFunction function)
Assigns the result of a function to each cell; x[i] = function(x[i]). (Iterates downwards from [size()-1] to [0]).Example:
// change each cell to its sine matrix = 0.5 1.5 2.5 3.5 matrix.assign(cern.jet.math.Functions.sin); --> matrix == 0.479426 0.997495 0.598472 -0.350783
For further examples, see the package doc.- Overrides:
assignin classObjectMatrix1D- Parameters:
function- a function object taking as argument the current cell's value.- Returns:
- this (for convenience only).
- See Also:
Functions
-
assign
public ObjectMatrix1D assign(ObjectMatrix1D source)
Replaces all cell values of the receiver with the values of another matrix. Both matrices must have the same size. If both matrices share the same cells (as is the case if they are views derived from the same matrix) and intersect in an ambiguous way, then replaces as if using an intermediate auxiliary deep copy of other.- Overrides:
assignin classObjectMatrix1D- Parameters:
source- the source matrix to copy from (may be identical to the receiver).- Returns:
- this (for convenience only).
- Throws:
java.lang.IllegalArgumentException- if size() != other.size().
-
assign
public ObjectMatrix1D assign(ObjectMatrix1D y, ObjectObjectFunction function)
Assigns the result of a function to each cell; x[i] = function(x[i],y[i]). (Iterates downwards from [size()-1] to [0]).Example:
// assign x[i] = x[i]y[i] m1 = 0 1 2 3; m2 = 0 2 4 6; m1.assign(m2, cern.jet.math.Functions.pow); --> m1 == 1 1 16 729 // for non-standard functions there is no shortcut: m1.assign(m2, new ObjectObjectFunction() { public Object apply(Object x, Object y) { return Math.pow(x,y); } } );For further examples, see the package doc.- Overrides:
assignin classObjectMatrix1D- Parameters:
y- the secondary matrix to operate on.function- a function object taking as first argument the current cell's value of this, and as second argument the current cell's value of y,- Returns:
- this (for convenience only).
- Throws:
java.lang.IllegalArgumentException- if size() != y.size().- See Also:
Functions
-
getQuick
public java.lang.Object getQuick(int index)
Returns the matrix cell value at coordinate index.Provided with invalid parameters this method may return invalid objects without throwing any exception. You should only use this method when you are absolutely sure that the coordinate is within bounds. Precondition (unchecked): index<0 || index>=size().
- Specified by:
getQuickin classObjectMatrix1D- Parameters:
index- the index of the cell.- Returns:
- the value of the specified cell.
-
like
public ObjectMatrix1D like(int size)
Construct and returns a new empty matrix of the same dynamic type as the receiver, having the specified size. For example, if the receiver is an instance of type DenseObjectMatrix1D the new matrix must also be of type DenseObjectMatrix1D, if the receiver is an instance of type SparseObjectMatrix1D the new matrix must also be of type SparseObjectMatrix1D, etc. In general, the new matrix should have internal parametrization as similar as possible.- Specified by:
likein classObjectMatrix1D- Parameters:
size- the number of cell the matrix shall have.- Returns:
- a new empty matrix of the same dynamic type.
-
like2D
public ObjectMatrix2D like2D(int rows, int columns)
Construct and returns a new 2-d matrix of the corresponding dynamic type, entirelly independent of the receiver. For example, if the receiver is an instance of type DenseObjectMatrix1D the new matrix must be of type DenseObjectMatrix2D, if the receiver is an instance of type SparseObjectMatrix1D the new matrix must be of type SparseObjectMatrix2D, etc.- Specified by:
like2Din classObjectMatrix1D- Parameters:
rows- the number of rows the matrix shall have.columns- the number of columns the matrix shall have.- Returns:
- a new matrix of the corresponding dynamic type.
-
setQuick
public void setQuick(int index, java.lang.Object value)Sets the matrix cell at coordinate index to the specified value.Provided with invalid parameters this method may access illegal indexes without throwing any exception. You should only use this method when you are absolutely sure that the coordinate is within bounds. Precondition (unchecked): index<0 || index>=size().
- Specified by:
setQuickin classObjectMatrix1D- Parameters:
index- the index of the cell.value- the value to be filled into the specified cell.
-
swap
public void swap(ObjectMatrix1D other)
Swaps each element this[i] with other[i].- Overrides:
swapin classObjectMatrix1D- Throws:
java.lang.IllegalArgumentException- if size() != other.size().
-
toArray
public void toArray(java.lang.Object[] values)
Fills the cell values into the specified 1-dimensional array. The values are copied. So subsequent changes in values are not reflected in the matrix, and vice-versa. After this call returns the array values has the form
for (int i=0; i < size(); i++) values[i] = get(i);- Overrides:
toArrayin classObjectMatrix1D- Throws:
java.lang.IllegalArgumentException- if values.length < size().
-
-
DMelt 3.0 © DataMelt by jWork.ORG