pub fn central_jacobian_const<const N: usize, const M: usize, F>( x: &[F; N], fs: &'_ dyn Fn(&[F; N]) -> Result<[F; M], Error>, ) -> Result<[[F; N]; M], Error>where F: Float + FromPrimitive,