MATLAB: How I should plot graph for this function

functiongraphplotplottingsimulink

I'm having trouble to plot function 'y = (x+(1/x))^2'. I got nothing so far

Best Answer

syms x
y = (x+(1/x))^2
fplot(y)