Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

How Do I Use A Database Research Tools You Can Use

Authors: Laura La Bella

1st Edition

1622753763, 978-1622753765

More Books

Students also viewed these Databases questions

Question

=+What is the nature of the unions in the particular country?

Answered: 1 week ago