NDSolve::ndnl
NDSolveValue::ndnl
ParametricNDSolve::ndnl
ParametricNDSolveValue::ndnl
An error occurs because the limits on the independent variable do not have values:
NDSolve[{f'[t] == f[t], f[1] == 1}, f, {t, t1, t2}]This shows a correct specification of the limits on the variable:
Block[{t1 = 1, t2 = 2}, NDSolve[{f'[t] == f[t], f[1] == 1}, f, {t, t1, t2}]]