Manyu Kapuria

Results 2 comments of Manyu Kapuria

Hi @mpophal2018 , Were you able to resolve this issue?

Script ``` from pyariadne import * def flow(): #! Make a function f and compute the flow of the differential equation dx/dt=f(x) x=RealVariable("x") f=make_function([x],[-x+sin(x)]) print("f:",f) domain=BoxDomainType([ (x_(0,x_(2))) ]) #!< Specify...