Vertical concatenation
(Quaternion overloading of standard MATLAB® function)
Y = vertcat(A, B, C, ....)
vertcat overloads a fundamental MATLAB® operation for quaternion arrays in order to make possible concatenation operations using the MATLAB® square bracket notation. It is not normally called directly as a function.
Quaternion arrays may be concatenated with non-quaternion arrays provided the non-quaternion arrays are numeric. The non-quaternion arrays will be converted to quaternion arrays by supplying a zero vector part.
>> vertcat(qi, qj, qk) == [qi; qj; qk] ans = 1 1 1