Class Triplet
Represents a set of data in a sparse matrix.
Inheritance
System.Object
Triplet
Assembly: Paramdigma.Core.dll
Syntax
public class Triplet : object
Constructors
|
Improve this Doc
View Source
Triplet(Int32, Int32)
Declaration
public Triplet(int m, int n)
Parameters
Type |
Name |
Description |
System.Int32 |
m |
|
System.Int32 |
n |
|
Properties
|
Improve this Doc
View Source
M
Declaration
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
N
Declaration
Property Value
Type |
Description |
System.Int32 |
|
|
Improve this Doc
View Source
Values
Gets values held by this triplet.
Declaration
public List<TripletData> Values { get; }
Property Value
Methods
|
Improve this Doc
View Source
AddEntry(Double, Int32, Int32)
Declaration
public void AddEntry(double value, int m, int n)
Parameters
Type |
Name |
Description |
System.Double |
value |
|
System.Int32 |
m |
|
System.Int32 |
n |
|