 | MismatchedSizeException Constructor (String, DoubleVector, DoubleVector) |
Constructs a MismatchedSizeException instance with an error message containing the
two incompatible vector lengths.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic MismatchedSizeException(
string operation,
DoubleVector v1,
DoubleVector v2
)
Public Sub New (
operation As String,
v1 As DoubleVector,
v2 As DoubleVector
)
public:
MismatchedSizeException(
String^ operation,
DoubleVector^ v1,
DoubleVector^ v2
)
new :
operation : string *
v1 : DoubleVector *
v2 : DoubleVector -> MismatchedSizeException
Parameters
- operation
- Type: SystemString
Name of the operation being performed. - v1
- Type: CenterSpace.NMath.CoreDoubleVector
The length of the first operand. - v2
- Type: CenterSpace.NMath.CoreDoubleVector
The length of the second operand.
See Also