Re: [sympy] Simple way of numerically evaluating Vectors

2018-09-28 Thread Aaron Meurer
The evalf method of the expression (like expr.evalf()) will evaluate all the parts of the expression that it can to floating point numbers. Aaron Meurer On Fri, Sep 28, 2018 at 10:15 AM, scurrier wrote: > I have a Vector whose components are long expressions. I'd like to evaluate > them so I ca

[sympy] Simple way of numerically evaluating Vectors

2018-09-28 Thread scurrier
I have a Vector whose components are long expressions. I'd like to evaluate them so I can see the numerical value of the components. Is there an easy way to do so? Seems like it should be simpler than the easiest way that I can come up with, which involves taking dot products. I was hoping for