python怎么写矩阵
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python怎么写矩阵相关的知识,希望对你有一定的参考价值。
参考技术A 用二维list,比如a=[[1,2,3],[4,5,6],[7,8,9]]python 怎么算矩阵每列的和
例子:
mat = [ [1,2,3], [10,20,30], [100,200,300] ]
list_sums_cols = addValuesInAllCols(mat)
print (list_sums_cols)
should produce the output:[111, 222, 333]
nrow = len(mat)
ncol = len(mat[0])
for i in range(ncol):
output.append(sum([mat[x][i] for x in range(nrow)]))
print output本回答被提问者采纳
以上是关于python怎么写矩阵的主要内容,如果未能解决你的问题,请参考以下文章