MATLAB: Need help plotting a function in matlab

functionhomeworksin

d32c5115c916d3030b4f0ee3e05466c.jpg
Hi friends, I'm struggling to make a code for above problem. I would appreciate your help.

Best Answer

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)
Related Question