MoreLinq的扫描和For Loop返回不同的结果



我需要使用以下公式从inputs计算outputs

Output(i) = inputs(i) * factor + outputs(i - 1) * (1 - factor)

我使用for循环和MoreLinq的Scan扩展实现了这一点

Int32 p = 5;
Decimal factor = (Decimal) 2 / (p + 1);
List<Decimal?> inputs = Enumerable.Range(1, 40).Select(x => (Decimal?)x).ToList(); 
// Using Scan extension  
List<Decimal?> outputs1 = inputs.Scan((x, y) => x * factor + (y * (1 - factor)) ?? 0).ToList(); 
// Using for loop
List<Decimal?> outputs2 = new List<Decimal?> { inputs[0] };
for (int i = 1; i < inputs.Count(); i++) 
outputs2.Add(inputs[i] * factor + (outputs2[i - 1] * (1 - factor)) ?? 0);

然而,我得到了不同的输出结果。我错过了什么?

我是否错误地使用了Scan

您以错误的顺序解释transformation函数的参数(查看源代码以了解transformation是如何调用的(。将您的代码更改为:

inputs.Scan((x, y) => y * factor + x * (1 - factor) ?? 0).ToList()

x是聚合器,即先前值,y是当前值。

相关内容

  • 没有找到相关文章

最新更新