I have used dsolve to generate a result in the form of an equation in variable result.
I want to plot this equation for the range of values in the x_val array so I can plot it. I do not seem to be able to find a way to use apply the function to the x values.
import sympy as sy
import numpy as np
t,m,k,c = sy.symbols('t m k c')
x = sy.Function('x')
diffeq = sy.Eq(x(t).diff(t, t) - x(t), sy.cos(t))
result = sy.dsolve(diffeq, ics={x(0): 0, sy.diff(x(t), t).subs(t,0): 0})
print(result)
x_val=np.linspace(0,10,100)
You can use
evalf()
on the right hand side of the returned equality like this.