69 lines
1.2 KiB
C++
69 lines
1.2 KiB
C++
// Copyright (C) 2013-2014 National ICT Australia (NICTA)
|
|
//
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
// -------------------------------------------------------------------
|
|
//
|
|
// Written by Conrad Sanderson - http://conradsanderson.id.au
|
|
|
|
|
|
//! \addtogroup fn_vectorise
|
|
//! @{
|
|
|
|
|
|
|
|
template<typename T1>
|
|
inline
|
|
typename
|
|
enable_if2
|
|
<
|
|
is_arma_type<T1>::value,
|
|
const Op<T1, op_vectorise_col>
|
|
>::result
|
|
vectorise(const T1& X)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
return Op<T1, op_vectorise_col>(X);
|
|
}
|
|
|
|
|
|
|
|
template<typename T1>
|
|
inline
|
|
typename
|
|
enable_if2
|
|
<
|
|
is_arma_type<T1>::value,
|
|
const Op<T1, op_vectorise_all>
|
|
>::result
|
|
vectorise(const T1& X, const uword dim)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
arma_debug_check( (dim > 1), "vectorise(): parameter 'dim' must be 0 or 1" );
|
|
|
|
return Op<T1, op_vectorise_all>(X, dim, 0);
|
|
}
|
|
|
|
|
|
|
|
template<typename T1>
|
|
inline
|
|
Col<typename T1::elem_type>
|
|
vectorise(const BaseCube<typename T1::elem_type, T1>& X)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
Col<typename T1::elem_type> out;
|
|
|
|
op_vectorise_cube_col::apply(out, X);
|
|
|
|
return out;
|
|
}
|
|
|
|
|
|
|
|
//! @}
|