pub fn rosenbrock_ab_hessian_const<const N: usize, T>(
    x: &[T; N],
    a: T,
    b: T
) -> [[T; N]; N]
Expand description

Hessian of the multidimensional Rosenbrock test function

The parameters a and b can be chosen freely.

This is the const generics version, which requires the number of parameters to be known at compile time.