Python 矩阵中 求每行个别列的norm值,然后再求所有行的norm总和

taux_with_orthese=[]withopen('tau_mannequin_1432139027.txt')asf:forlineinf.readlines(... taux_with_orthese=[]
with open('tau_mannequin_1432139027.txt') as f:
for line in f.readlines():
taux_with_orthese.append(map(float,line.replace("\n","").split(",")))
taux_with_orthese = np.array(taux_with_orthese)

tau_norm_instant = []
print tau_norm_instant
for i in range(0,len(taux_with_orthese)-1):

tau_norm_instant = np.array([np.sqrt((taux_with_orthese[i][28])**2 + (taux_with_orthese[i][29])**2 +(taux_with_orthese[i][30])**2 + (taux_with_orthese[i][31])**2 + (taux_with_orthese[i][32])**2 + (taux_with_orthese[i][33])**2+
(taux_with_orthese[i][34])**2)])
print tau_norm_instant
程序这么写完之后 只出现一列数

,我想求这一列数的和 怎么求呢?试过 tau_norm_instant = sum(
np.array([np.sqrt((taux_with_orthese[i][28])**2 + (taux_with_orthese[i][29])**2 +
(taux_with_orthese[i][30])**2 + (taux_with_orthese[i][31])**2 + (taux_with_orthese[i][32])**2 + (taux_with_orthese[i][33])**2 +(taux_with_orthese[i][34])**2)])),但是不好使啊...
展开
 我来答
lucifer_001
推荐于2016-01-13 · TA获得超过684个赞
知道小有建树答主
回答量:414
采纳率:0%
帮助的人:414万
展开全部
没看懂公式  不过凭经验。。。

tau_norm_instant = np.zero(1)
for i in range(0,len(taux_with_orthese)-1):
        tau_norm_instant += np.array([np.sqrt((taux_with_orthese[i][28])**2 + (taux_with_orthese[i][29])**2                                                                +(taux_with_orthese[i][30])**2 + (taux_with_orthese[i][31])**2 +                                                                  (taux_with_orthese[i][32])**2 + (taux_with_orthese[i][33])**2+
                                                                (taux_with_orthese[i][34])**2)])
                                                                
print tau_norm_instant
追问

谢谢!最后一个就是我要求的值。但是我怎么能提取出来呢...因为还要做别的计算

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式