amcostant

Results 7 comments of amcostant

@certik I could try and start implementing the code (I have no C++ experience but could try), I was thinking of using the diff function as a template, would that...

@isuruf I am implementing a HAM solver for a PDE solution, integration is limited to polynomials wrt time as mentioned, but derivatives can be quite complicated wrt state. What would...

temporary workaround if anyone else wants the function, you need to know the max coefficient of the polynomial you are integrating for this workaround. ```julia function polyintegrate(b1::SymbolicType, b2::Basic,n::Int) temp =...

@certik @isuruf Is there a way in Julia/or using ccall to get the exponents for a given variable ex., https://github.com/symengine/SymEngine.jl/issues/172 if so I could expand on the above code to...

@isuruf Thanks! I presume you are implying using 'get_symengine_class()'. While trying to figure out what function to use I ran into these problems: I think there are some problems with...

@isuruf The issue also extends to problems where the 0th order coefficient is an Int, Float, or Rational. Here is a very basic example ```julia julia> coeff.(-1//2*Basic(1)+t,t,0:3) 4-element Array{Basic,1}: 0...

is the current Julia build v0.7.0 using that version of Symengine?