コード例 #1
0
 public MergeDataSeriesOperation(double first, DataSeriesExpression second, OperationType operation)
     : this(new ValueOperation(first), second, operation)
 {
 }
コード例 #2
0
 public MergeDataSeriesOperation(DataSeriesExpression first, double second, OperationType operation)
     : this(first, new ValueOperation(second), operation)
 {
 }
コード例 #3
0
 public static FunctionExpression Sum(DataSeriesExpression operation)
 {
     return(new AggregateFunction(operation, (double newValue, double aggregated) => newValue + aggregated));
 }
コード例 #4
0
 public MergeDataSeriesOperation(DataSeriesExpression first, DataSeriesExpression second, OperationType operation)
 {
     this.first     = first;
     this.second    = second;
     this.operation = operation;
 }
コード例 #5
0
 public static FunctionExpression Min(DataSeriesExpression operation)
 {
     return(new AggregateFunction(operation, (double newValue, double aggregated) => newValue < aggregated ? newValue : aggregated, double.MaxValue));
 }