Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
IVector.cs
1using System.Collections.Generic;
2
4{
8 public interface IVector : IElement
9 {
14 {
15 get;
16 }
17
21 ICollection<IElement> VectorElements
22 {
23 get;
24 }
25
31 IElement GetElement(int Index);
32
38 void SetElement(int Index, IElement Value);
39 }
40}
Basic interface for all types of elements.
Definition: IElement.cs:20
Basic interface for vectors.
Definition: IVector.cs:9
ICollection< IElement > VectorElements
An enumeration of vector elements.
Definition: IVector.cs:22
int Dimension
Dimension of vector.
Definition: IVector.cs:14
IElement GetElement(int Index)
Gets an element of the vector.
void SetElement(int Index, IElement Value)
Sets an element in the vector.