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.
我正在使用通用 Java 矩阵包 (UJMP) 来处理矩阵。我现在的问题是矩阵的大小是固定的,但我想添加或删除行或列。
有人知道如何有效地实现这一点,而无需在每次添加/删除行或列时创建一个新矩阵?
我相信 UJMP 中的矩阵实现了ObjectCalculations接口,该接口具有各种签名的方法,这些签名返回新deleteRows矩阵或对修改后的原始矩阵的引用,具体取决于它们的调用方式。deleteColumnsMatrix
ObjectCalculations
deleteRows
deleteColumns
Matrix