MathLibSetWeightsForSpectra method

int MathLibSetWeightsForSpectra(
  1. Pointer<NativeMathLib> mathLibPtr,
  2. double delta_c,
  3. double theta_c,
  4. double alpha_c,
  5. double beta_c,
  6. double gamma_c,
  7. Pointer<NativeOpStatus> opResult,
)

Implementation

int MathLibSetWeightsForSpectra(
  ffi.Pointer<NativeMathLib> mathLibPtr,
  double delta_c,
  double theta_c,
  double alpha_c,
  double beta_c,
  double gamma_c,
  ffi.Pointer<NativeOpStatus> opResult,
) {
  return _MathLibSetWeightsForSpectra(
    mathLibPtr,
    delta_c,
    theta_c,
    alpha_c,
    beta_c,
    gamma_c,
    opResult,
  );
}