MyCaffe
1.12.2.41
Deep learning software for Windows C# programmers.
|
The OctavesCollection manages a list of Octaves. More...
Public Member Functions | |
OctavesCollection () | |
The constructor. More... | |
void | Add (Octaves o) |
Adds a new Octaves to the collection. More... | |
bool | Remove (Octaves o) |
Removes an Octaves from the collection. More... | |
void | RemoveAt (int nIdx) |
Removes an Octaves at a given index in the collection. More... | |
void | Clear () |
Removes all Octaves from the collection. More... | |
IEnumerator< Octaves > | GetEnumerator () |
Returns the enumerator for the collection. More... | |
Properties | |
int | Count [get] |
The number of Octaves in the collection. More... | |
Octaves | this[int nIdx] [get] |
Returns the Octaves at an index within the collection. More... | |
The OctavesCollection manages a list of Octaves.
Definition at line 744 of file DeepDraw.cs.
MyCaffe.extras.OctavesCollection.OctavesCollection | ( | ) |
The constructor.
Definition at line 751 of file DeepDraw.cs.
void MyCaffe.extras.OctavesCollection.Add | ( | Octaves | o | ) |
void MyCaffe.extras.OctavesCollection.Clear | ( | ) |
Removes all Octaves from the collection.
Definition at line 804 of file DeepDraw.cs.
IEnumerator< Octaves > MyCaffe.extras.OctavesCollection.GetEnumerator | ( | ) |
Returns the enumerator for the collection.
Definition at line 813 of file DeepDraw.cs.
bool MyCaffe.extras.OctavesCollection.Remove | ( | Octaves | o | ) |
Removes an Octaves from the collection.
o | Specifies the Octaves to remove. |
Definition at line 787 of file DeepDraw.cs.
void MyCaffe.extras.OctavesCollection.RemoveAt | ( | int | nIdx | ) |
Removes an Octaves at a given index in the collection.
nIdx | Specifies the index. |
Definition at line 796 of file DeepDraw.cs.
|
get |
The number of Octaves in the collection.
Definition at line 758 of file DeepDraw.cs.
|
get |
Returns the Octaves at an index within the collection.
nIdx |
Definition at line 768 of file DeepDraw.cs.