D 编程语言的线性代数库
我正在寻找一个包来对最大大约 100 x 100 的矩阵进行矩阵数学运算。
我至少需要进行逆运算、乘法和转置。 我更喜欢封装程度更高的接口,而不是更高的性能。
I'm looking for a package to do matrix math with matrices of up to about 100 x 100.
I need to, at a minimum, do inverses, multiplication and transposition. I'd prefer a more encapsulated interface over higher performance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
dsource.org/projects 之前已经在这个线程中提到过,这里有一些细节。
以下是GNU 科学库 (GSL) 的 D 语言绑定。
以下是 GSL 的链接。
以下是有关 BLAS 支持 的文档的一些链接,分解 (1,2), eigenssystems,采用 GSL。
dsource.org/projects has been mentioned on this thread before, here are a few details.
Here are the D language bindings for the GNU Scientific Library (GSL).
Here is a link to GSL.
Here is some links to the documentation on BLAS support, decompositions (1, 2), eigenssystems, in GSL.
D 不能直接调用 C 代码吗? 或者您正在寻找用 D 编写的库?
Can't D make direct calls into C code? Or are you looking for a library written in D?