124 lines
2.0 KiB
C++
124 lines
2.0 KiB
C++
// Copyright (C) 2013 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_inplace_trans
|
|
//! @{
|
|
|
|
|
|
|
|
template<typename eT>
|
|
inline
|
|
typename
|
|
enable_if2
|
|
<
|
|
is_cx<eT>::no,
|
|
void
|
|
>::result
|
|
inplace_htrans
|
|
(
|
|
Mat<eT>& X,
|
|
const char* method = "std"
|
|
)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
inplace_strans(X, method);
|
|
}
|
|
|
|
|
|
|
|
template<typename eT>
|
|
inline
|
|
typename
|
|
enable_if2
|
|
<
|
|
is_cx<eT>::yes,
|
|
void
|
|
>::result
|
|
inplace_htrans
|
|
(
|
|
Mat<eT>& X,
|
|
const char* method = "std"
|
|
)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
const char sig = (method != NULL) ? method[0] : char(0);
|
|
|
|
arma_debug_check( ((sig != 's') && (sig != 'l')), "inplace_htrans(): unknown method specified" );
|
|
|
|
const bool low_memory = (sig == 'l');
|
|
|
|
if( (low_memory == false) || (X.n_rows == X.n_cols) )
|
|
{
|
|
op_htrans::apply_mat_inplace(X);
|
|
}
|
|
else
|
|
{
|
|
inplace_strans(X, method);
|
|
|
|
X = conj(X);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
template<typename eT>
|
|
inline
|
|
typename
|
|
enable_if2
|
|
<
|
|
is_cx<eT>::no,
|
|
void
|
|
>::result
|
|
inplace_trans
|
|
(
|
|
Mat<eT>& X,
|
|
const char* method = "std"
|
|
)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
const char sig = (method != NULL) ? method[0] : char(0);
|
|
|
|
arma_debug_check( ((sig != 's') && (sig != 'l')), "inplace_trans(): unknown method specified" );
|
|
|
|
inplace_strans(X, method);
|
|
}
|
|
|
|
|
|
|
|
template<typename eT>
|
|
inline
|
|
typename
|
|
enable_if2
|
|
<
|
|
is_cx<eT>::yes,
|
|
void
|
|
>::result
|
|
inplace_trans
|
|
(
|
|
Mat<eT>& X,
|
|
const char* method = "std"
|
|
)
|
|
{
|
|
arma_extra_debug_sigprint();
|
|
|
|
const char sig = (method != NULL) ? method[0] : char(0);
|
|
|
|
arma_debug_check( ((sig != 's') && (sig != 'l')), "inplace_trans(): unknown method specified" );
|
|
|
|
inplace_htrans(X, method);
|
|
}
|
|
|
|
|
|
|
|
//! @}
|