When using the build array function block and de-selecting the Concatenate
Inputs is it possible to easily remove the padding that gets added to a 2D
array to make the lengths equal? For example if a 1D array of
{1,2,3,4,5} is entered it would be outputted as a 2D array of [{1,2,0}
{3,4,5}] is it possible to have the ouput as [{1,2} {3,4,5}] with
different lengths?


|