IResizable Matrix<T> Interface
Represents the methods available for matrices that can be resized.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public interface IResizableMatrix<T>
Type Parameters
- T
Methods
Append | Appends an empty column at the end of a matrix. |
Append | Appends a column at the end of a matrix. |
Append | Appends zero or more columns at the end of a matrix. |
Append | Appends an empty row at the end of a matrix. |
Append | Appends a row at the end of a matrix. |
Append | Appends zero or more rows at the end of a matrix. |
Delete | Deletes a column from a matrix. |
Delete | Deletes a series of columns from a matrix. |
Delete | Deletes a row from a matrix. |
Delete | Deletes a series of rows from a matrix. |
Insert | Inserts a column into a matrix that the specified index. |
Insert | Inserts zero or more columns into a matrix that the specified index. |
Insert | Inserts a row into a matrix that the specified index. |
Insert | Inserts zero or more rows into a matrix that the specified index. |
Replace | Inserts zero or more columns into a matrix in place of zero or more other columns. |
Replace | Inserts zero or more rows into a matrix in place of zero or more other rows. |
Resize | Resizes a matrix. |