• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    class template
    <linalg>

    std::linalg::setup_givens_rotation_result

    namespace std::linalg {
      template<class Real>
      struct setup_givens_rotation_result {
        Real c;
        Real s;
        Real r;
      };
    
      template<class Real>
      struct setup_givens_rotation_result<complex<Real>> {
        Real c;
        complex<Real> s;
        complex<Real> r;
      };
    }
    

    概要

    ギブンス回転の結果を表すクラス。詳しくは、setup_givens_rotationにて。

    適格要件

    • Realcomplex<Real>が規定できる型であること。

    setup_givens_rotationに記載。

    バージョン

    言語

    • C++26

    処理系

    関連項目

    参照