Interface IDotProduct<TSelf, TValue>
Interface defining a method computing the dot product of two elements.
Namespace: BRIDGES.Algebra.Measure
Assembly: BRIDGES.dll
Syntax
public interface IDotProduct<TSelf, TValue> : INorm<TSelf>, IMetric<TSelf>
Type Parameters
Name | Description |
---|---|
TSelf | Type of the elements in the pre-hilbertian set. |
TValue | Type of the elements in the field. |
Methods
| Improve this Doc View SourceDotProduct(TSelf)
Computes the dot product of this element with another element.
Declaration
TValue DotProduct(TSelf other)
Parameters
Type | Name | Description |
---|---|---|
TSelf | other | Right element of the dot product. |
Returns
Type | Description |
---|---|
TValue | The value of the dot product of the two elements. |