Skip to content

Function gen_exp

function gen_exp(T1, T2) base

template <typename T1, typename T2, typename TF = ftype<std::common_type_t<T1, T2>>>
KFR_FUNCTION generator_exp<TF> gen_exp(T1 start, T2 step)

Creates an expression that generates values using the following formula:

\\[ x_i = e^{ start + i \cdot step } \\]

Template parameters
T1 Type of the starting exponent.
T2 Type of the step value.
Parameters
start Exponent of the first value to produce.
step Increment added to the exponent between successive values.
Returns
Exponential generator expression.

Fully qualified name: kfr::gen_exp(T1, T2)

This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.