MATLAB: How ı can write this function on Matlabhelphomework I will enter an x value Best AnswerHi,Here is one of the possible solutions for x having a single value:function Y = MY_fun(x)if x>=1 && x<10 Y = exp(-x-1)/(log10(x)+log(x));elseif x>=10 Y=sin(3*x)/sqrt(3*pi);else Y = x^(-exp(1)+x)+sqrt(x)*abs(x);endend
Best Answer