symja_android_library
symja_android_library copied to clipboard
:coffee: Symja - computer algebra language & symbolic math library. A collection of popular algorithms implemented in pure Java.
This would be helpful for explaining why the integration results are what they are.
Port an implementation of the multivariate Newton’s method as described here: * https://github.com/tamaskis/newtons_method_n-MATLAB Enhance the `FindRoot` function with a new method for this case: * https://github.com/axkr/symja_android_library/blob/master/symja_android_library/matheclipse-core/src/main/java/org/matheclipse/core/reflection/system/FindRoot.java
Print the axis in `Graphics3D`object created from `ListPlot3D`. Determine the axes settings from the 3D plot * https://github.com/axkr/symja_android_library/blob/6bc19c6fdad170f498d30b511eb12751a2d15e25/symja_android_library/matheclipse-core/src/main/java/org/matheclipse/core/builtin/GraphicsFunctions.java#L1272 and handover to mathics-threejs-backend * https://mathics3.github.io/mathics-threejs-backend/documentation Experiments from JSFiddle: ```js drawGraphics3d(document.getElementById('graphics3d'), {...
Series of rational function gives wrong result ```mma Series(((x^3 + 72*x^2 + 600*x + 720)/(12*x^2 + 240*x+720)),{x,0,6}) ```
Input: ``` ContinuedFraction[30000000000000/53*Pi] ``` Latest version of Symja returns `{𝟤𝟣𝟦𝟩𝟦𝟪𝟥𝟨𝟦𝟩,𝟢}` which is wrong. The correct answer should be:
Could you please implement special case for this equation? ``` Solve(-3+x^(1/3)+x^2==0,x) ``` Expected result:
Input: ```mma Int[ Sqrt((4+x)/(4-x)), {x, 0, 4}] // N ``` Expected result:
Implement BooleanFunction by using [LogicNG BDD](https://github.com/logic-ng/LogicNG/wiki/BDD) implementation.
How can we move releases to Maven Central? - https://maven.apache.org/repository/guide-central-repository-upload.html Do we have to include all dependencies which are not on Maven Central? External Java sources are already refactored into...
**Is your feature request related to a problem? Please describe.** I saw https://axkr.github.io/blog/2022/JShellUsageWithSymja.html and it is a really nice usage of jshell. I realized that with jbang it could be...