amcostant
amcostant
To whom it may concern, I was wondering if there were any plans to develop an Integrate method in SymEngine. I understand that there are some workarounds for polynomial integration,...
To whom it may concern, I understand that implementing a generic integrate function would be a significant expansion, but a basic method that simply integrated polynomials would be very helpful....
@isuruf I noticed that there is no way to take the derivative of abs() in Julia as it does not specify if the argument is real when using ccall, thus...
When I run coeff without expand I get ``` julia> coeff.((1 + h)*x_2*(h^2*t^2*Umax + 2*h*t*(1 + h)*x_2),t,0:3) 4-element Array{Basic,1}: 0 0 0 0 ``` but when I run expand first...
Can you implement a function that will return a vector that contains all the power coefficients for a given variable, for example, would return ``` julia> power_coeff(t^(1//2)+t^3+t^2.4+x^3.1, t) 3-element Array{Basic,1}:...