STD::ARRAY ALGORITHM

consider: static constexpr unsigned num_points {7810};
std :: array <double, num_points> axis;
for (int i = 0; i <num_points; ++ i)
{Axis [i] = 180 + 0.1 * i;}
The axis is a constant at the class level. I want to avoid initializing it like any other global variable. Can it be done at compile time?
