DiagonalSimilarityMatrix Constructor |
Initializes a new instance of the DiagonalSimilarityMatrix class.
Creates a SimilarityMatrix with one value for match and one for mis-match.
Namespace: Bio.SimilarityMatricesAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public DiagonalSimilarityMatrix(
int matchValue,
int mismatchValue
)
Public Sub New (
matchValue As Integer,
mismatchValue As Integer
)
public:
DiagonalSimilarityMatrix(
int matchValue,
int mismatchValue
)
new :
matchValue : int *
mismatchValue : int -> DiagonalSimilarityMatrix
Parameters
- matchValue
- Type: SystemInt32
Diagonal score for (col == row). - mismatchValue
- Type: SystemInt32
Off-diagonal score for (col != row).
See Also