使用带有C#的Math.Net数字交叉产品

时间:2012-08-01 12:53:20

标签: c# math numerics mathdotnet

我有两个向量MathNet.Numerics.LinearAlgebra.Generic.Vector<double>,如下所示:

Vector<double> v1 = new DenseVector(new double[] { 1, 2, 3 });     
Vector<double> v2 = new DenseVector(new double[] { 3, 2, 1 });

我基本上想要CrossProduct他们,但找不到官方功能。我知道交叉产品是一个非常简单的功能,我可以自己编写,但我想使用API​​的功能。

以下两个对我有用:(无法在API中找到此类功能。)

Vector<double> result = v1.CrossProduct(v2);
Vector<double> result = Vector.CrossProduct(v1,v2);

我发现了这个,但是当我尝试编写它时找不到该功能:API Reference

2 个答案:

答案 0 :(得分:5)

进行3元素向量的交叉乘积的样本方法。

    using DLA = MathNet.Numerics.LinearAlgebra.Double;

    public static DLA.Vector Cross(DLA.Vector left, DLA.Vector right)
    {
        if ((left.Count != 3 || right.Count != 3))
        {
            string message = "Vectors must have a length of 3.";
            throw new Exception(message);
        }
        DLA.Vector result = new DLA.DenseVector(3);
        result[0] = left[1] * right[2] - left[2] * right[1];
        result[1] = -left[0] * right[2] + left[2] * right[0];
        result[2] = left[0] * right[1] - left[1] * right[0];

        return result;
    }

答案 1 :(得分:3)

您正在访问 Math.NET Iridium 的API文档,这是一个已停产的项目。目的是 Iridium 代码库应该集成到 Math.NET Numerics 中,但似乎CrossProduct功能尚未转移,在 Math.NET Numerics Codeplex网站上的these two讨论主题中可以看到。

如果您想使用 Math.NET Iridium,CrossProduct方法肯定可用,您可以从here下载最新的源代码。