Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Piecewise Function Write a MATLAB function (not script) that takes an input number, x, and returns an output number, y, that will be of the
Piecewise Function
Write a MATLAB function (not script) that takes an input number, x, and returns an output number, y, that will be of the following form:
y= e^x when x>0
y= e^(-x) when-1 x 0
y= -e*x when x < -1
Note that the built in function exp(n) takes the constant e to any power n, and that you can get the constant e by writing exp(1).
Your Function
function y = piecewise(x)
y = x;
end
Code to call your function
y = piecewise(0.5)
y = piecewise(-1.5)
y = piecewise(2)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started