使用 VB.NET lambda 表达式计算方差

发布于 2024-10-16 03:15:47 字数 527 浏览 1 评论 0原文

我正在尝试将以下代码转换为

public static double Variance(this IEnumerable<double> source) 
{ 
    double avg = source.Average();
    double d = source.Aggregate(0.0, 
                 (total, next) => total += Math.Pow(next - avg, 2)); 
    return d / (source.Count() - 1);
}

上描述的 方差计算 CodeProject 转换为相应的VB.NET lambda表达式语法,但我陷入了Aggregate函数的转换。

我如何在 VB.NET 中实现该代码?

I am trying to convert the following code for the variance calculation

public static double Variance(this IEnumerable<double> source) 
{ 
    double avg = source.Average();
    double d = source.Aggregate(0.0, 
                 (total, next) => total += Math.Pow(next - avg, 2)); 
    return d / (source.Count() - 1);
}

described on CodeProject into corresponded VB.NET lambda expression syntax, but I am stuck in the conversion of Aggregate function.

How can I implement that code in VB.NET?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

德意的啸 2024-10-23 03:15:47

以下内容仅适用于 VB 10。之前的版本不支持多行 lambda。

Dim d = source.Aggregate(0.0,
    Function(total, next)
        total += (next - avg) ^ 2
        Return total
    End Function)

Function(foo) bar 对应于单语句 lambda (foo) =>; bar 在 C# 中,但您需要此处的多行 lambda,它仅自 VB 10 以来才存在。

但是,我对原始代码持谨慎态度。修改 total 似乎是一个错误,因为没有 Aggregate 重载通过引用传递其参数。所以我建议原始代码是错误的(即使它实际上可以编译),并且正确的解决方案(在 VB 中)如下所示:

Dim d = source.Aggregate(0.0, _
    Function(total, next) total + (next - avg) ^ 2)

此外,这不需要任何多行 lambda,因此也适用于旧版本的 VB。

The following will only work in VB 10. Prior versions didn’t support multi-line lambdas.

Dim d = source.Aggregate(0.0,
    Function(total, next)
        total += (next - avg) ^ 2
        Return total
    End Function)

Function(foo) bar corresponds to the single-statement lambda (foo) => bar in C# but you need the multi-line lambda here which only exists since VB 10.

However, I’m wary of the original code. Modifying total seems like an error, since no Aggregate overload passes its arguments by reference. So I’m suggesting that the original code is wrong (even though it may actually compile), and that the correct solution (in VB) would look like this:

Dim d = source.Aggregate(0.0, _
    Function(total, next) total + (next - avg) ^ 2)

Furthermore, this doesn’t require any multi-line lambdas, and thus also works on older versions of VB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文