medpy.features.utilities.join#

medpy.features.utilities.join(*vectors)[source]#

Takes an arbitrary number of aligned vectors of the same length and combines them into a single vector (vertically).

E.g. taking two 100-sample feature vectors of once 5 and once 7 features, a 100x12 feature vector is created and returned.

The feature vectors are expected to have the form samples*features i.e.:

    s1    s2    s3    [...]
f1
f2
[...]
Parameters:
*vectorssequences

A number of vectors with the same number of samples.

Returns:
vectorndarray

The combined vectors.