Need help plotting a function in matlab
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
derrick li
il 5 Giu 2019
Commentato: Mohammad Alhashash
il 7 Giu 2019
![d32c5115c916d3030b4f0ee3e05466c.jpg](https://www.mathworks.com/matlabcentral/answers/uploaded_files/223132/d32c5115c916d3030b4f0ee3e05466c.jpeg)
Hi friends, I'm struggling to make a code for above problem. I would appreciate your help.
Risposta accettata
Mohammad Alhashash
il 5 Giu 2019
x = -10:0.05:10;
fun_x_1 = exp(-0.3*x(x<0));
fun_x_2 = sin(x(x>=0).^3)-sin(x(x>=0).^2)+1;
plot(x(x<0),fun_x_1,x(x>=0),fun_x_2)
2 Commenti
Mohammad Alhashash
il 7 Giu 2019
opps.. you are absolutely right.
no problem. could you please accept the answer?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Parametric Spectral Estimation 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!