DSolve
DSolve(equation, f(var), var)
attempts to solve a linear differential
equation
for the functionf(var)
and variablevar
.
See:
Examples
>> DSolve({y'(x)==y(x)+2},y(x), x){{y(x)->-2+E^x*C(1)}}
>> DSolve({y'(x)==y(x)+2,y(0)==1},y(x), x){{y(x)->-2+3*E^x}}
Related terms
Factor, FindRoot, NRoots,Solve
Implementation status
- ☑ - partially implemented