Navigation
API > API/Plugins > API/Plugins/Learning > API/Plugins/Learning/TMultiArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TMultiArrayView< 1, ElementType > Flatten () |
Flattens the array view into a single dimension. | MultiArray.h | |
TMultiArrayView< 1, const ElementType > Flatten () |
Flattens the array view into a single dimension. | MultiArray.h | |
TMultiArrayView< DimNum - 1, ElementType > Flatten () |
Flattens the array on a given dimension, merging that dimension and the following one. | MultiArray.h | |
TMultiArrayView< DimNum - 1, const ElementType > Flatten () |
Flattens the array on a given dimension, merging that dimension and the following one. | MultiArray.h | |
TMultiArrayView< DimNum - 1, ElementType > Flatten
(
uint8 Dimension |
Flattens the array on a given dimension, merging that dimension and the following one. | MultiArray.h | |
TMultiArrayView< DimNum - 1, const ElementType > Flatten
(
uint8 Dimension |
Flattens the array on a given dimension, merging that dimension and the following one. | MultiArray.h |
Flatten()
Description
Flattens the array view into a single dimension.
| Name | Flatten |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
TMultiArrayView < 1, ElementType > Flatten()
Flattened array view.
Flatten()
Description
Flattens the array view into a single dimension.
| Name | Flatten |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
TMultiArrayView < 1, const ElementType > Flatten() const
Flattened array view.
Flatten()
Description
Flattens the array on a given dimension, merging that dimension and the following one. e.g. a 3D MultiArrayView with shape [10, 5, 3] flattened on dimension 0 will become a 2D MultiArrayView with shape [10 * 5, 3]
| Name | Flatten |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
template<uint8 Dimension>
TMultiArrayView < DimNum - 1, ElementType > Flatten()
View flattened on the given dimension.
Flatten()
Description
Flattens the array on a given dimension, merging that dimension and the following one. e.g. a 3D MultiArrayView with shape [10, 5, 3] flattened on dimension 0 will become a 2D MultiArrayView with shape [10 * 5, 3]
| Name | Flatten |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
template<uint8 Dimension>
TMultiArrayView < DimNum - 1, const ElementType > Flatten() const
View flattened on the given dimension.
Flatten(uint8)
Description
Flattens the array on a given dimension, merging that dimension and the following one. e.g. a 3D MultiArrayView with shape [10, 5, 3] flattened on dimension 0 will become a 2D MultiArrayView with shape [10 * 5, 3]
| Name | Flatten |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
TMultiArrayView < DimNum - 1, ElementType > Flatten
(
uint8 Dimension
)
View flattened on the given dimension.
Flatten(uint8)
Description
Flattens the array on a given dimension, merging that dimension and the following one. e.g. a 3D MultiArrayView with shape [10, 5, 3] flattened on dimension 0 will become a 2D MultiArrayView with shape [10 * 5, 3]
| Name | Flatten |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
TMultiArrayView < DimNum - 1, const ElementType > Flatten
(
uint8 Dimension
) const
View flattened on the given dimension.