Code : Tout sélectionner
from giacpy import giac
giac("printpow(1)")
f=giac("3.02565028105e+042*x^2+x")
print (f/f.lcoeff("x")).expand()
Jose
Code : Tout sélectionner
from giacpy import giac
giac("printpow(1)")
f=giac("3.02565028105e+042*x^2+x")
print (f/f.lcoeff("x")).expand()
Code : Tout sélectionner
n:=12:; expand((evalf(10**n,100)*x^2+x)/evalf(10**n,100))
Thanks for the explanation.frederic han a écrit : ↑ven. févr. 15, 2019 6:02 pmThis is not giacpy related, I have a similar problem with n>=12:
whatever is epsilon or Digits.(I put evalf with 100 digits to avoid global Digits or epsilon2zero limitations. Bernard, is there some epsilon2zero use in this division? or is it always done in floats instead of mpfr?Code : Tout sélectionner
n:=12:; expand((evalf(10**n,100)*x^2+x)/evalf(10**n,100))
Frederic
Code : Tout sélectionner
import giacsettings
help(giacsettings)