MATLAB: How to do plotting polynomial( 2x^-2+1) this x with power of -1 . how to do in mathlab

polynomial

theQ is plotting polynomial for x with power of -1

Best Answer

syms x
%x with power -1
fplot(2*x^(-1)+1)