4

我需要从 LINEST Excel 函数中获取信息。我想知道是否有具有类似功能的库,或者是否可以以某种方式在 C# 中使用本机 Excel 函数?我在 MVS 2010 中工作并使用 Windows 窗体可能很重要。我写了一个最小二乘估计函数,它只为 2 因子模型计算参数,但我需要为超过 2 个因子的模型计算参数。

PS 实际上我用谷歌搜索答案,我看到有人使用包 Microsoft.Office.Excel 来计算必要的信息,但我的 IDE 中没有这样的导入。我不想发明轮子,所以我非常感谢任何信息。谢谢你。

更新:最后我向我的项目添加了 Microsoft.Office.Excel 引用并解决了我的问题。下面附上源代码。结果是类似 Excel 的二维数组。代码写的很匆忙,所以不是很好,需要修改。我只希望它对其他人有所帮助。 /w 我如果你需要帮助

        Microsoft.Office.Interop.Excel.Application xl = new Microsoft.Office.Interop.Excel.Application();
        Microsoft.Office.Interop.Excel.WorksheetFunction wsf = xl.WorksheetFunction;

        List<double> x = new List<double> { 107, 109, 110, 113, 120, 122, 123, 128, 136, 140, 145, 150 };
        List<double> y = new List<double> { 102, 105, 108, 110, 115, 117, 119, 125, 132, 130, 141, 144 };

        object result = wsf.LinEst(y.ToArray(), x.ToArray(), true, true);

        Array resArray = (Array)result;

        double[,] linest = new double[5, 2];
        int i = 0, j = 0;
        Console.WriteLine("{0,15:f10}", resArray.Length);
        foreach (var element in resArray)
        {
            if (i == 0 || i == 2 || i == 4 || i == 6 || i == 8)
            {
                linest[j, 0] = (double)element;                    
            }
            else
            {
                linest[j, 1] = (double)element;
                j++;
            }
            i++;                
        }

        Console.WriteLine();
        for (i = 0; i < linest.GetLength(0); i++)
        {
            for (j = 0; j < linest.GetLength(1); j++)
                Console.Write("{0,25:f13}", linest[i, j]);
            Console.WriteLine();
        }
4

1 回答 1

1

试试 Math net numerics 中的线性代数库,完全避免使用 excel。

于 2013-04-06T14:22:17.957 回答