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.
我正在浏览 GSL 文档,很好奇为什么没有向量 * 矩阵函数。我得到那个向量 * 矩阵与 matrix_transpose * 向量相同。为什么这样做而不是编写一个函数来与左侧的向量进行乘法?
我无法调查 GSL 开发人员的头脑,但我想他们只是没有看到需要它:矩阵转置可以通过对索引进行不同的迭代来就地完成,因此添加另一个函数只会增加更多开销。(在我自己使用 GSL 的项目中,我总是将 GSL 函数包装在一些更高级别的功能中,因此隐藏了这种细节)