时间:2019-03-17 标签:c#visualstudio和lapack

发布于 2024-11-08 23:50:26 字数 115 浏览 0 评论 0原文

有没有办法在C#(Visual Studio 2008)中调用存储过程内的LAPACK例程?

如果可以的话,步骤是怎样的?

Is there a way to call LAPACK routines inside a stored procedure in C# (visual studio 2008)?.

If so, How would be the steps?.

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

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

发布评论

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

评论(1

ゝ偶尔ゞ 2024-11-15 23:50:27

您必须将 LAPACK 编译为 .dll,然后从 C# 调用它。我不知道 SQL 如何适应这个问题,但我认为这是一个单独的问题。

详细请参见 http://icl.cs.utk.edu/lapack- for-windows/lapack/ 最后有关于如何编译源代码的说明。我为 BLAS 制作了一个静态库,为 LAPACK 制作了一个动态库。然后,根据您要使用的过程,您必须编写调用 .dll 的托管包装函数。

You have to compile LAPACK into a .dll and then call it from C#. I don't know how SQL will fit in this, but I think that is a separate question.

In detail look at http://icl.cs.utk.edu/lapack-for-windows/lapack/ and in the end there are instructions on how to compile the sources. I make a static library for BLAS and a dynamic library for LAPACK. Then depending on which procedures you want to use, you will have to write managed wrapper functions that call the .dll.

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