Skip to content

Minor additions

Choose a tag to compare

@darioizzo darioizzo released this 26 Jun 06:52
· 187 commits to master since this release

New Feature

  • The possibility to subs symbols with gduals is added to python:
from pyaudi import gdual_double as gdual
x = gdual(1, "x", 4)
x = x**2
y = gdual(0., "y", 1)
newx = x.subs("dx", y)
newx == gdual(1, "y", 4)*gdual(1, "y", 4)
newx.order == 4