diff armadillo-3.900.4/include/armadillo_bits/arma_ostream_bones.hpp @ 49:1ec0e2823891

Switch to using subrepo copies of qm-dsp, nnls-chroma, vamp-plugin-sdk; update Armadillo version; assume build without external BLAS/LAPACK
author Chris Cannam
date Thu, 13 Jun 2013 10:25:24 +0100
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/armadillo-3.900.4/include/armadillo_bits/arma_ostream_bones.hpp	Thu Jun 13 10:25:24 2013 +0100
@@ -0,0 +1,60 @@
+// Copyright (C) 2008-2011 NICTA (www.nicta.com.au)
+// Copyright (C) 2008-2011 Conrad Sanderson
+// 
+// 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/.
+
+
+//! \addtogroup arma_ostream
+//! @{
+
+
+
+class arma_ostream_state
+  {
+  private:
+
+  const ios::fmtflags   orig_flags;
+  const std::streamsize orig_precision;
+  const std::streamsize orig_width;
+  const char            orig_fill;
+
+
+  public:
+
+  inline arma_ostream_state(const std::ostream& o);
+  
+  inline void restore(std::ostream& o) const;
+  };
+
+
+
+class arma_ostream
+  {
+  public:
+  
+  template<typename eT> inline static std::streamsize modify_stream(std::ostream& o, const eT*              data, const uword n_elem);
+  template<typename  T> inline static std::streamsize modify_stream(std::ostream& o, const std::complex<T>* data, const uword n_elem);
+  template<typename eT> inline static std::streamsize modify_stream(std::ostream& o, typename SpMat<eT>::const_iterator begin, const uword n_elem, const typename arma_not_cx<eT>::result* junk = 0);
+  template<typename  T> inline static std::streamsize modify_stream(std::ostream& o, typename SpMat<T>::const_iterator begin, const uword n_elem, const typename arma_cx_only<T>::result* junk = 0);
+  
+  template<typename eT> inline static void print_elem_zero(std::ostream& o, const bool modify);
+  
+  template<typename eT> arma_inline static void print_elem(std::ostream& o, const eT&              x, const bool modify);
+  template<typename  T>      inline static void print_elem(std::ostream& o, const std::complex<T>& x, const bool modify);
+
+  template<typename eT> inline static void print(std::ostream& o, const  Mat<eT>& m, const bool modify);
+  template<typename eT> inline static void print(std::ostream& o, const Cube<eT>& m, const bool modify);
+  
+  template<typename oT> inline static void print(std::ostream& o, const field<oT>&         m);
+  template<typename oT> inline static void print(std::ostream& o, const subview_field<oT>& m);
+
+
+  template<typename eT> inline static void print_dense(std::ostream& o, const SpMat<eT>& m, const bool modify);
+  template<typename eT> inline static void print(std::ostream& o, const SpMat<eT>& m, const bool modify);
+  };
+
+
+
+//! @}