コード例 #1
0
 /// <summary>
 /// Initialize a new instance of the <see cref="SimpsonIntegral"/> class using values from another <see cref="SimpsonIntegral"/> instance.
 /// </summary>
 /// <param name="integrator">A <see cref="SimpsonIntegral"/> instance.</param>
 public SimpsonIntegral(SimpsonIntegral integrator)
 {
     _stepsNumber = integrator._stepsNumber;
 }
コード例 #2
0
 /// <summary>
 /// Initialize a new instance of the <see cref="SimpsonIntegral"/> class using values from another <see cref="SimpsonIntegral"/> instance.
 /// </summary>
 /// <param name="integrator">A <see cref="SimpsonIntegral"/> instance.</param>
 public SimpsonIntegral(SimpsonIntegral integrator)
 {
     _stepsNumber = integrator._stepsNumber;
 }