how can I plot this exponential function?
Mostra commenti meno recenti
hi, I have the following function g with the values of x
x = linspace(-2,2)
G = @(x) exp(x) .* (x <= 0) + sin(2*pi*x)./max(x,realmin) .* (x>0);
I tried to plot G using
plot(G,x)
but I am getting error. How can I plot G?
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Labels and Styling in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!