stack ( seq -- tensor )
Tensors ยป Manipulating Tensors

Prev:transpose ( tensor: tensor -- tensor': tensor )
Next:hstack ( seq -- tensor )


Vocabulary
tensors

Inputs
seqa sequence


Outputs
tensora tensor


Word description
Joins the sequences in seq along a new axis. tensor will have one more dimension than the arrays in seq.

Errors
Throws a shape-mismatch-error if the sequences in seq do not have the same shape.

Definition