Skip to content

Commit 4f79107

Browse files
code snippet edited
1 parent 1b0924d commit 4f79107

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ the documentation, which contains the unreleased features.
2121
## Example
2222

2323
```julia
24-
julia> using Symbolics
24+
using Symbolics
2525
using SymbolicNumericIntegration
2626

27-
julia> @variables x a b
27+
@variables x a b
2828

29-
julia> integrate(3x^3 + 2x - 5)
29+
integrate(3x^3 + 2x - 5)
3030

31-
julia> integrate(exp(a * x), x; symbolic = true)
31+
integrate(exp(a * x), x; symbolic = true)
3232
(x^2 + (3//4)*(x^4) - (5//1)*x, 0, 0)
3333

34-
julia> integrate(sin(a * x) * cos(b * x), x; symbolic = true, detailed = false)
34+
integrate(sin(a * x) * cos(b * x), x; symbolic = true, detailed = false)
3535
(exp(a*x) / a, 0, 0)
3636
```
3737

0 commit comments

Comments
 (0)