Constructs and returns a new slice view representing the rows of the given column. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa. To obtain a slice view on subranges, construct a sub-ranging view (viewPart(...)), then apply this method to the sub-range view.
Example:
2 x 3 matrix: 1, 2, 3 4, 5, 6
viewColumn(0) ==>
Matrix1D of size 2: 1, 4
@param column the column to fix.
@return a new slice view.
@throws IndexOutOfBoundsException if column < 0 || column>= columns().
@see #viewRow(int)
Constructs and returns a new slice view representing the rows of the given column. The returned view is backed by this matrix, so changes in the returned view are reflected in this matrix, and vice-versa. To obtain a slice view on subranges, construct a sub-ranging view (viewPart(...)), then apply this method to the sub-range view.
Example:
2 x 3 matrix: 1, 2, 3 4, 5, 6
viewColumn(0) ==>
Matrix1D of size 2: 1, 4
@param column the column to fix.
@return a new slice view.
@throws IndexOutOfBoundsException if column < 0 || column>= columns().
@see #viewRow(int)
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.