Plot the following function and use subplot to illustrate the plot. y=exp(x)/sqrt(1-x.^2), 0<=x<=1
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Plot the following function and use subplot to illustrate the plot.
y=exp(x)/sqrt(1-x.^2), 0<=x<=1
Here's what I have so far
x=0:0.2:1;
for i=1:numel(x)
y(i)=exp(x(i))/sqrt(1-x(i).^2)
end
subplot(2,2,1)
plot(x,y),xlabel('x'),ylabel('y'),axis([0 1 0 7])
0 commentaires
Réponses (0)
Voir également
Catégories
En savoir plus sur Subplots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!