Stan Math Library
4.9.0
Automatic Differentiation
|
|
inline |
Return an array of linearly spaced elements.
This produces an array from low to high (inclusive) with elements spaced as (high - low) / (K - 1). For K=1, the array will contain the high value; for K=0 it returns an empty array.
K | size of the array |
low | smallest value |
high | largest value |
std::domain_error | if K is negative, if low is nan or infinite, if high is nan or infinite, or if high is less than low. |
Definition at line 26 of file linspaced_array.hpp.