Back to FabImage Deep Learning website

You are here: Start » Computer Vision » Deep Learning » ConvertTensorToRealArrayArray

ConvertTensorToRealArrayArray


Header: FILDL.h
Namespace: fil
Module: DeepLearning

Converts a tensor with the NL ordering to a two dimensional array of reals.

Syntax

C++
C#
 
void fil::ConvertTensorToRealArrayArray
(
	const fil::Tensor& inTensor,
	ftl::Array<ftl::Array<float>>& outRealArrayArray
)

Parameters

Name Type Default Description
Input value inTensor const Tensor&
Output value outRealArrayArray Array<Array<float>>&

Errors

List of possible exceptions:

Error type Description
DomainError inTensor must be 2-dimensional.
DomainError inTensor must have the NL ordering.