We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0924d commit 4f79107Copy full SHA for 4f79107
README.md
@@ -21,17 +21,17 @@ the documentation, which contains the unreleased features.
21
## Example
22
23
```julia
24
-julia> using Symbolics
+using Symbolics
25
using SymbolicNumericIntegration
26
27
-julia> @variables x a b
+@variables x a b
28
29
-julia> integrate(3x^3 + 2x - 5)
+integrate(3x^3 + 2x - 5)
30
31
-julia> integrate(exp(a * x), x; symbolic = true)
+integrate(exp(a * x), x; symbolic = true)
32
(x^2 + (3//4)*(x^4) - (5//1)*x, 0, 0)
33
34
-julia> integrate(sin(a * x) * cos(b * x), x; symbolic = true, detailed = false)
+integrate(sin(a * x) * cos(b * x), x; symbolic = true, detailed = false)
35
(exp(a*x) / a, 0, 0)
36
```
37
0 commit comments