|
previous: plot functions next: solve matrix |
|
1. integrate sqrt(2+sin(x)) from x=1.1 to x=3.3
2. integrate sqrt(2+sin(x)) from x=a to x=b 3. indefinite integral of sqrt(2+sin(x)) |
| Mathematica:
Integrate[ Sqrt[2+Sin[x]], {x,1.1,3.3} ] |
Matlab:
syms x a b |
| Maple:
value(Int(sqrt(2+sin(x)), x=1.1..3.3)); | IDL:
does only numerical integration (#1), not analytic (#2,#3).
function myfunc, x print, QSIMP( 'myfunc', 1.1, 3.3 ) |