コード例 #1
0
 private float Operation(Flow flow)
 {
     return(MathLibrary.ExponentialFunctionOfRange(flow.GetValue <float>(input), flow.GetValue <float>(minimumRange), flow.GetValue <float>(maximumRange), flow.GetValue <float>(maximumRange), flow.GetValue <float>(exponent), flow.GetValue <float>(scale)));
 }
コード例 #2
0
 private float Operation(Recursion recursion)
 {
     return(MathLibrary.ExponentialFunctionOfRange(input.GetValue <float>(), minimumRange.GetValue <float>(), maximumRange.GetValue <float>(), maximumRange.GetValue <float>(), exponent.GetValue <float>(), scale.GetValue <float>()));
 }