std::valarray::valarray

来自cppreference.com
< cpp‎ | numeric‎ | valarray

 
 
Numerics的图书馆
常见的数学函数
浮点环境
复数
数字阵列
伪随机数生成
编译时合理的算法 (C++11)
通用的数值运算
原文:
Generic numeric operations
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
iota(C++11)
accumulate
inner_product
adjacent_difference
partial_sum
 
std::valarray
成员函数
原文:
Member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
非成员函数
原文:
Non-member functions
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
swap(C++11)
begin(C++11)
end(C++11)
abs
exp
log
log10
pow
sqrt
sin
cos
tan
asin
acos
atan
atan2
sinh
cosh
tanh
Helper类
原文:
Helper classes
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
 
valarray();
(1)
explicit valarray( size_t count );
(2)
valarray( const T& val, size_t count );
(3)
valarray( const T* vals, size_t count );
(4)
valarray( const valarray& other );
(5)
valarray( valarray&& other );
(6) (C++11 起)
valarray( const std::slice_array<T>& );
(7)
valarray( const std::gslice_array<T>& );
(8)
valarray( const std::mask_array<T>& );
(9)
valarray( const std::indirect_array<T>& );
(10)
valarray( std::initializer_list<T> il );
(11) (C++11 起)

Constructs new numeric array from various sources.

1) Default constructor. Constructs an empty numeric array.
2) Constructs a numeric array with count copies of default-initialized elements.
3) Constructs a numeric array with count copies of val or *val respectively.
4) Constructs a numeric array with copies of count values from an array pointed to by vals. If this array contains less than count values, the behavior is undefined.
5) Copy constructor. Constructs the numeric array with the copy of the contents of other.
6) Move constructor. Constructs the container with the contents of other using move semantics.
11) Constructs the numeric array with the contents of the initializer list il.

[编辑] 参数

count - the number of elements to construct
val - the value to initialize the elements with
other - another numeric array to use as source to initialize the contents
il - initializer list to initialize the elements with

[编辑] 例外

1-5)
(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里
6)
noexcept specification:  
noexcept
  (C++11 起)
7-11)
(无)
原文:
(none)
这段文字是通过 Google Translate 自动翻译生成的。
您可以帮助我们检查、纠正翻译中的错误。详情请点击这里