• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

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

    履歴 編集

    function template
    <linalg>

    addable

    constexpr bool addable(
      const in-vector auto& in1,
      const in-vector auto& in2,
      const in-vector auto& out)
    {
      return out.extent(0) == in1.extent(0) &&
             out.extent(0) == in2.extent(0);
    } // (1)
    
    constexpr bool addable(
      const in-matrix auto& in1,
      const in-matrix auto& in2,
      const in-matrix auto& out)
    {
      return out.extent(0) == in1.extent(0) &&
             out.extent(1) == in1.extent(1) &&
             out.extent(0) == in2.extent(0) &&
             out.extent(1) == in2.extent(1);
    } // (2)
    

    概要

    テンプレートパラメータに指定されたベクトルまたは行列の次元が同じかどうかを判定する、説明専用の関数である。

    戻り値

    In1In2Outの各次元が同じ場合trueを返す。そうでない場合は、falseを返す。

    • (1): ベクトル
    • (2): 行列

    バージョン

    言語

    • C++26

    関連項目

    参照