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.
有关如何创建具有 M + 1 列和 N + 1 行的矩阵的任何帮助,其中 M 和 N 对应于序列的大小。我需要它来对齐两个序列。
我试过使用 numpy. 但我得到了固定大小的矩阵。
[[0. for i in range(m+1)] for j in range(n+1)]
将产生一个 m+1 x n+1 矩阵。
如果使用正确,对于许多操作来说,使用 anumpy array可能会更快numpy:
numpy
array
numpy.zeros((m+1, n+1))