Horizontal concatenation
(Quaternion and octonion overloadings of standard MATLAB® function)
Y = horzcat(A, B, C, ....)
horzcat 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.
>> horzcat(qi, qj, qk) == [qi qj qk] ans = 1 1 1