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

履歴 編集

function template
<valarray>

std::log

namespace std {
  template <class T>
  ValOrProxy<T> log(const ValOrProxy<T>& va);
}

概要

自然対数(ネイピア数 e を底とした対数)を得る。log は logarithm(対数)、あるいは、logarithmic function(対数関数)の略。

戻り値

以下のコードと等価のことを行う:

return va.apply(static_cast<T(*)(T)>(std::log));

備考

  • 引数、および、戻り値の型 ValOrProxy は、valarray、あるいは、その代理となる型である。
    <valarray> の概要も参照のこと。

#include <iostream>
#include <valarray>

template <class T>
void print(const char* name, const std::valarray<T>& va)
{
  std::cout << name << " : {";
  bool first = true;

  // 範囲for文で全要素を走査する
  for (const T& x : va) {
    if (first) {
      first = false;
    }
    else {
      std::cout << ',';
    }
    std::cout << x;
  }
  std::cout << "}" << std::endl;
}

int main()
{
  const std::valarray<float> va = {0.1f, 0.2f, 0.3f};

  std::valarray<float> exp_result = std::exp(va);
  std::valarray<float> log_result = std::log(exp_result);

  print("exp_result", exp_result);
  print("log_result", log_result);
}

出力

exp_result : {1.10517,1.2214,1.34986}
log_result : {0.1,0.2,0.3}