Class SingularMatrixException
Inheritance
Implements
Inherited Members
Namespace: Mars.Numerics.Exceptions
Assembly: Mars.Numerics.dll
Syntax
[Serializable]
public class SingularMatrixException : Exception, ISerializable
Remarks
The singular matrix exception is thrown in cases where a method which performs matrix inversions has encountered a non-invertible matrix during the process.
Constructors
| Improve this Doc View SourceSingularMatrixException()
Declaration
public SingularMatrixException()
Remarks
The singular matrix exception is thrown in cases where a method which performs matrix inversions has encountered a non-invertible matrix during the process.
SingularMatrixException(SerializationInfo, StreamingContext)
Declaration
protected SingularMatrixException(SerializationInfo info, StreamingContext context)
Parameters
Type | Name | Description |
---|---|---|
System.Runtime.Serialization.SerializationInfo | info | The System.Runtime.Serialization.SerializationInfo that holds the serialized object data about the exception being thrown. |
System.Runtime.Serialization.StreamingContext | context | The System.Runtime.Serialization.StreamingContext that contains contextual information about the source or destination. |
Remarks
The singular matrix exception is thrown in cases where a method which performs matrix inversions has encountered a non-invertible matrix during the process.
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException |
The info parameter is null.
|
System.Runtime.Serialization.SerializationException | The class name is null or System.Exception.HResult is zero (0). |
SingularMatrixException(String, Exception)
Declaration
public SingularMatrixException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Message providing some additional information. |
System.Exception | innerException | The exception that is the cause of the current exception. |
Remarks
The singular matrix exception is thrown in cases where a method which performs matrix inversions has encountered a non-invertible matrix during the process.
SingularMatrixException(String)
Declaration
public SingularMatrixException(string message)
Parameters
Type | Name | Description |
---|---|---|
System.String | message | Message providing some additional information. |
Remarks
The singular matrix exception is thrown in cases where a method which performs matrix inversions has encountered a non-invertible matrix during the process.