How to plot y = exp^x/sinx 0.7
Show older comments
new to matlab need a bit of help thanks!
need to plot the graph of y=((exp^x)/sin(x)) + 0.7
1 Comment
doc plot
doc sin
doc exp
should help. And if you don't know how to create an array of x values you need to start reading the basic Matlab help
Answers (1)
madhan ravi
on 15 Nov 2018
syms x
y=exp(x)/sin(x) + 0.7
fplot(y)
Categories
Find more on Stress and Strain in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!