在线文档教程
C++
数字 | Numerics

std::log(std::valarray)

std::log%28 std::valArray%29

Defined in header
template< class T > valarray<T> log( const valarray<T>& va

中的每个元素va计算元素值的自然对数。

参数

va-value array to apply the operation to

返回值

值数组中的值的自然对数va...

注记

不合格职能%28log%29用于执行计算。如果没有这样的功能,std::log由于参数相关查找而使用。

函数的返回类型与std::valarray在这种情况下,替换类型具有以下属性:

  • const成员职能std::valarray提供。

  • std::valarray,,,std::slice_array,,,std::gslice_array,,,std::mask_arraystd::indirect_array可以从替换类型构造。

  • 所有接受类型参数的函数conststd::valarray&begin()end()%28,因为C++14%29也应该接受替换类型。

  • 接受两个类型参数的所有函数conststd::valarray&应该接受每一个组合conststd::valarray&以及替代型。

  • 返回类型不会在最嵌套的参数类型上添加两个以上的模板嵌套级别。

可能的实施

模板<class T>值数组<T>日志%28值数组<T>&va%29{valArray<T>其他=va;对于%28t&i:其他%29{i=log%28i%29;}返回Other;}

*。

另见

log10(std::valarray)applies the function std::log10 to each element of valarray (function template)
exp(std::valarray)applies the function std::exp to each element of valarray (function template)
logcomputes natural (base e) logarithm (to base e) (ln(x)) (function)
log(std::complex)complex natural logarithm with the branch cuts along the negative real axis (function template)

© cppreference.com

在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。

http://en.cppreference.com/w/cpp/数值/valArray/log