MATLAB: How to find all the positive roots of (e^(-.2x ))(cos(2x))-.15x^2+1

exppositive rootsroots

I only know how to do this with polynomials.

Best Answer

syms x,
y=exp(-.2*x )*cos(2*x)-.15*x^2+1
sol=solve(y)
Related Question