Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找能够对 3D 矩阵执行操作(例如逆、转置、加法、减法等)的库。
到目前为止,我已经尝试过 Apache Commons Math 和 Colt 库,但它们似乎都不能很好地处理 3D 矩阵......
有什么建议么?...
有一个用于 3D 矢量和矩阵运算的“标准”Java 库 -javax.vecmath来自Java 3D。
javax.vecmath
如果你喜欢 R,JRI可能是一个很好的解决方案。
此外,如果您有大量数据并且喜欢 R,请尝试RHIPE。
JAMA对我来说效果很好。我用它来连接和反转 4x4 矩阵,以及其他功能。运行良好,易于学习的 API,可以满足我的一切需求。