Statistical Machine Intelligence & Learning Engine
-
Updated
Mar 14, 2022 - Java
{{ message }}
Statistical Machine Intelligence & Learning Engine
Computer Algebra System in Javascript (Typescript)
Tests for following standard libraries seem to be missing. Although some libraries might be difficult to test (such as random.egi or io.egi), it'd be nice to have some tests that make sure all the functions in these libraries can be (at least) executed without dynamic errors.
lib/core/io.egilib/core/random.egilib/core/shell.egilib/core/sort.egiIn PR #4557 we added InstallEarlyMethod and used it to merge FirstOp and First. Something similar should be done for more operations, following the pattern outlined in PR #4557
Here is a partial lists of operations where it may make sense to do so:
coll.gd
ListOpSumOpProductOpFilteredOpNumberOpForAllOpForAnyOplist.gdmicroMathematics Plus - Extended visual calculator
Official repository of the FriCAS computer algebra system
A field-theory motivated approach to computer algebra.
Now that we can generate equations of motion from a Lagrangian (should work in theory for Hamiltonians too but I haven't tried), it'd be really slick if we could pipe that solution into a differential equation solver and get a numerical solution.
@PerezHz works on TaylorIntergration.jl so if he wants to get that running, that'd be great. I'd also like DifferentialEquations.jl support at some p
An open-source Mathematica. This repository contains the Python modules for WL Built-in functions, variables, core primitives, e.g. Symbol, a parser to create Expressions, and an evaluator to execute them.
Computer calculations made easy
I noticed that I forgot to update the API docs for a refactor that moved mathy.mathy to mathy.api.
Currently, you have to run:
cd libraries/website
sh tools/docs.shAnd it generates all the API doc files. This means it's too slow to run all the time. It should be updated to run as part of lint-staged and support passing individual files on the command-line, similar to th
The Piranha computer algebra system.
mathiu : a simple computer algebra system in C++.
QuantumSheet - A user friendly mathematics worksheet and solver
An extensible, intuitive and easy to use algebra system that is capable of algebraic manipulation, simplification, differentiation, and much more. Reverse engineered from TI-nspire CAS.
A Symbolic Code Algebra+Calculus system for VS Code
A powerful language for symbolic computation written in Swift.
A C++20 library for the symbolic manipulation of sparse polynomials & co.
reduce-algebra: a portable general-purpose computer algebra system, automatically mirrored from https://svn.code.sf.net/p/reduce-algebra/code/. Please visit the REDUCE Homepage, https://reduce-algebra.sourceforge.io/, to report any bugs or request assistance.
A Haskell-embedded computer algebra system that knows nothing about algebra, at the core.
symbolic circuit analyzer for the Maxima computer algebra system
CASprzak is a Computer Algebra System by EasyKayzey (Erez Israeli Miller and Michael Kasprzak)
Deposited packages of the homalg project
LaTeX to SIXEL conversion
My A-Level computer science project, an computer algebra system built with Dart.
Lightweight server for testing equivalence of two symbolic expressions.
Computational Semigroup Theory Software System written in Clojure
simple java computer algebra system
Add a description, image, and links to the computer-algebra-system topic page so that developers can more easily learn about it.
To associate your repository with the computer-algebra-system topic, visit your repo's landing page and select "manage topics."
Suppose
Would be nice to have a
degreefunction that we can use asdegree(z,x)to extract the degree ofzwith respect tox(this will help for multi-variable polynomials too).Also
coeff(z,x)to extract a list of coefficients with respect to he variablex. Thuscoeff(z,x^2)returns the coefficient with respect tox^2and so on.