Plot the following function and use subplot to illustrate the plot. y=exp(x)/sqrt(1-x.^2), 0<=x<=1
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposte (0)
Vedere anche
Categorie
Scopri di più su Subplots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!