A one-dimensional polynomial array of first order, i.e. More...
#include <DirectProductArray.hpp>
A one-dimensional polynomial array of first order, i.e.
the coordinate expression is linear.
Fiber::LinearArray< T >::LinearArray | ( | const T & | C0, | |
const T & | C1, | |||
index_t | max_idx, | |||
const MemBase::Creator_t & | C | |||
) | [inline] |
Create a procedural array of aequidistant values.
To create an LinearArray<double> going from a=-3.4 to b=5.6 in a resolution of r=15 steps:
LinearArray<double> foo(a, (b-a)/(r-1), r);