Routines to concatenate Vector's.  
More...
#include <myramath/MYRAMATH_EXPORT.h>
#include <myramath/utility/Number.h>
Go to the source code of this file.
|  | 
|  | 
| Vector< NumberS > | myra::vectorcat (const CVectorRange< NumberS > &a, const CVectorRange< NumberS > &b) | 
|  | Returns [a b]. 
 | 
|  | 
| Vector< NumberD > | myra::vectorcat (const CVectorRange< NumberD > &a, const CVectorRange< NumberD > &b) | 
|  | Returns [a b]. 
 | 
|  | 
| Vector< NumberC > | myra::vectorcat (const CVectorRange< NumberC > &a, const CVectorRange< NumberC > &b) | 
|  | Returns [a b]. 
 | 
|  | 
| Vector< NumberZ > | myra::vectorcat (const CVectorRange< NumberZ > &a, const CVectorRange< NumberZ > &b) | 
|  | Returns [a b]. 
 | 
|  | 
|  | 
| Vector< NumberS > | myra::vectorcat (const Array1< CVectorRange< NumberS > > &ranges) | 
|  | Returns [a b c ...], note this requires initializer_list braces, as in: vectorcat({a,b,...}) 
 | 
|  | 
| Vector< NumberD > | myra::vectorcat (const Array1< CVectorRange< NumberD > > &ranges) | 
|  | Returns [a b c ...], note this requires initializer_list braces, as in: vectorcat({a,b,...}) 
 | 
|  | 
| Vector< NumberC > | myra::vectorcat (const Array1< CVectorRange< NumberC > > &ranges) | 
|  | Returns [a b c ...], note this requires initializer_list braces, as in: vectorcat({a,b,...}) 
 | 
|  | 
| Vector< NumberZ > | myra::vectorcat (const Array1< CVectorRange< NumberZ > > &ranges) | 
|  | Returns [a b c ...], note this requires initializer_list braces, as in: vectorcat({a,b,...}) 
 | 
|  | 
Routines to concatenate Vector's.