You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The class holds parameters + forecasting but the algorithms live outside. This way, I can add/replace estimators without modifying the class.
275
275
276
-
- `typename ARModel<order>::Vector` — why the `typename`? Inside templates, dependent names might be types or values. `typename` tells the compiler it’s a type.
276
+
- `typename ARModel<order>::Vector`: why the `typename`? Inside templates, dependent names might be types or values. `typename` tells the compiler it’s a type.
277
277
278
278
- `std::array` vs `std::vector`? `std::array<T,N>` is fixed-size (size known at compile time) and stack-allocated while `std::vector<T>` is dynamic-size (runtime) and heap-allocated.
0 commit comments