IVector Space Operations<TScalar, TVector> Interface
Represents the contract for the scalar multiplication on a vector space.
Definition
Namespace: Numerics.NET.Generic
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
[ObsoleteAttribute("Use IOperations<T> instead.")]
public interface IVectorSpaceOperations<TScalar, TVector> : IGroupOperations<TVector>,
IComparer<TVector>, IEqualityComparer<TVector>
- Implements
- IGroupOperations<TVector>, IComparer<TVector>, IEqualityComparer<TVector>
Type Parameters
- TScalar
- The type of the scalars.
- TVector
- The type of the vectors.
Properties
Max |
Gets the largest possible value of the operand type.
(Inherited from IGroupOperations<T>) |
Min |
Gets the smallest possible value of the operand type.
(Inherited from IGroupOperations<T>) |
Zero |
Gets the value of zero for the operand type T.
(Inherited from IGroupOperations<T>) |
Methods
Abs |
Returns the absolute value of a value.
(Inherited from IGroupOperations<T>) |
Add |
Adds one value to another.
(Inherited from IGroupOperations<T>) |
Compare | Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other. (Inherited from IComparer<TVector>) |
Equals | Determines whether the specified objects are equal. (Inherited from IEqualityComparer<TVector>) |
Get | Returns a hash code for the specified object. (Inherited from IEqualityComparer<TVector>) |
Multiply | Multiplies a vector by a scalar. |
Negate |
Negates a value.
(Inherited from IGroupOperations<T>) |
Subtract |
Subtracts one value from another.
(Inherited from IGroupOperations<T>) |