Re: [sympy] Jupyter notebook seems stuck at trigsymp()

2016-08-03 Thread Jason Moore
Nuno, Simplification of very large expressions is typically not a good idea due to the time needed for computation. Unless you have a specific need to simplify the resulting equations, I'd avoid it. Jason moorepants.info +01 530-601-9791 On Tue, Aug 2, 2016 at 5:25 PM, Nuno

[sympy] Changing lambdify to use numpy by default

2016-08-03 Thread Aaron Meurer
Right now if you want to use lambdify with numpy you have to explicitly pass 'numpy' as the third argument, like lambdify(x, expr, 'numpy'), as it defaults to math otherwise (technically it defaults to math but falls back to numpy if the function isn't in math). I've got a PR to change this so