view liboctave/numeric/schur.h @ 31249:de6fc38c78c6

Make Jacobian types offered by dlsode.f accessible by lsode (bug #31626). * liboctave/numeric/LSODE-opts.in: Add options "jacobian type", "lower jacobian subdiagonals", and "upper jacobian subdiagonals". * liboctave/numeric/LSODE.cc (file scope, lsode_j, LSODE::do_integrate (double)): Handle new configurable Jacobian types. * build-aux/mk-opts.pl: Don't implicitly convert to integer in condition.
author Olaf Till <olaf.till@uni-jena.de>
date Fri, 12 Nov 2010 08:53:05 +0100
parents 796f54d4ddbf
children e88a07dec498
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 1994-2022 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave is free software: you can redistribute it and/or modify it
// under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Octave is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_schur_h)
#define octave_schur_h 1

#include "octave-config.h"

#include <string>

// FIXME: Don't really need these for compiling schur.h, but it messes
// up compilation in liboctave/array if these are not present.
#include "CMatrix.h"
#include "dMatrix.h"
#include "fCMatrix.h"
#include "fMatrix.h"

namespace octave
{
  namespace math
  {
    template <typename T>
    class
    schur
    {
    public:

      schur (void) : m_schur_mat (), m_unitary_schur_mat () { }

      schur (const T& a, const std::string& ord, bool calc_unitary = true)
        : m_schur_mat (), m_unitary_schur_mat ()
      {
        init (a, ord, calc_unitary);
      }

      schur (const T& a, const std::string& ord, octave_f77_int_type& info,
             bool calc_unitary = true)
        : m_schur_mat (), m_unitary_schur_mat ()
      {
        info = init (a, ord, calc_unitary);
      }

      // This one should really be protected or private but we need it in
      // rsf2csf and I don't see how to make that function a friend of
      // this class.
      schur (const T& s, const T& u) : m_schur_mat (s), m_unitary_schur_mat (u)
      { }

      schur (const schur& a)
        : m_schur_mat (a.m_schur_mat),
          m_unitary_schur_mat (a.m_unitary_schur_mat)
      { }

      schur& operator = (const schur& a)
      {
        if (this != &a)
          {
            m_schur_mat = a.m_schur_mat;
            m_unitary_schur_mat = a.m_unitary_schur_mat;
          }

        return *this;
      }

      ~schur (void) = default;

      T schur_matrix (void) const { return m_schur_mat; }

      T unitary_schur_matrix (void) const { return m_unitary_schur_mat; }

    protected:

    private:

      T m_schur_mat;
      T m_unitary_schur_mat;

      OCTAVE_API octave_f77_int_type
      init (const T& a, const std::string& ord, bool calc_unitary);
    };

    template <typename RT, typename AT>
    extern OCTAVE_API schur<RT>
    rsf2csf (const AT& s, const AT& u);
  }
}

#endif