symbolic mathematics engine in OCaml with differentiation, integration, simplification, and numerical methods
17

Configure Feed

Select the types of activity you want to include in your feed.

leibniz / test_expr_output.ml
147 B 7 lines
1open Leibniz.Parser 2open Leibniz.Expr 3 4let () = 5 let expr = parse "e^(x^2)" in 6 let result = diff "x" expr in 7 print_endline (to_string result)