Vector multiplication
I would like to know why this procedure doesn't work
aa = list(var('delta_%d' % i) for i in (0..2))
c=n(matrix(1,3,(-0.5,0.2,.3)),2)
U = e^(c*transpose(aa))
show(U)
I would like to know why this procedure doesn't work
aa = list(var('delta_%d' % i) for i in (0..2))
c=n(matrix(1,3,(-0.5,0.2,.3)),2)
U = e^(c*transpose(aa))
show(U)
For one, because you can't transpose list
s. Secondly, you should take the (single) entry of c*aa
.
aa = vector(var('delta_%d' % i) for i in (0..2))
c = n(matrix(1,3,(-0.5,0.2,.3)),2)
U = e^((c*aa)[0])
show(U)
$$e^{\left(-0.50 \delta_{0} + 0.19 \delta_{1} + 0.25 \delta_{2}\right)}$$
(Note that you specified 2 bits of precision with n
.)
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2019-11-12 16:09:27 +0100
Seen: 192 times
Last updated: Nov 13 '19