MATLAB: Plot graph on matlab

matlab function

Hello, each time I am trying to plot a graph on matlab online I am having a blank graph as per attachment for y=(exp(x)/sin(x))+0.3 with a range of -10 <x<10Capture.JPG

Best Answer

syms x
y=(exp(x)/sin(x))+0.3
fplot(y,[-10 10])
Related Question