vconcat (1)
Vertical concatenation of 2 vectors.
Prototype
auto vconcat(const Vector<T1> &a, const Vector<T2> &b)
Parameters
a | First vector |
b | Second vector |
Returns
Vertical concatenation
Description
This function merges 2 column vectors:
(assuming a and b have respectively \(n\) et \(m\) elements). The | operator has been redefined to make the same operation.