How to plot y = exp^x/sinx 0.7
Afficher commentaires plus anciens
new to matlab need a bit of help thanks!
need to plot the graph of y=((exp^x)/sin(x)) + 0.7
1 commentaire
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
Réponses (1)
madhan ravi
le 15 Nov 2018
syms x
y=exp(x)/sin(x) + 0.7
fplot(y)
Catégories
En savoir plus sur Stress and Strain dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!