Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Write three MATLAB functions to caiculate the hyperbolic sine, cosine, and tangent functions. $$ \sinh (x)=\frac{e^{x}-e^{-x}}{2}, \cosh (x)=\frac{e^{x}+e^{-x}}{2}, \tanh (x)=\frac{e^{x}-e^{-x}}{e^{x}+e^{-x}} $$ Use your functions to plot the shapes of the hyperbolic sine, cosine, and tangent functions.

Short Answer

Expert verified
Create three MATLAB functions to calculate the hyperbolic sine, cosine, and tangent functions as follows: 1. Hyperbolic Sine function: ```MATLAB function y = sinhfunc(x) y = (exp(x) - exp(-x))/2; end ``` 2. Hyperbolic Cosine function: ```MATLAB function y = coshfunc(x) y = (exp(x) + exp(-x))/2; end ``` 3. Hyperbolic Tangent function: ```MATLAB function y = tanhfunc(x) y = (exp(x) - exp(-x))/(exp(x) + exp(-x)); end ``` Then, plot the functions using this code: ```MATLAB x = linspace(-5, 5, 1000); y_sinh = sinhfunc(x); y_cosh = coshfunc(x); y_tanh = tanhfunc(x); subplot(3,1,1) plot(x, y_sinh) title('Hyperbolic Sine') subplot(3,1,2) plot(x, y_cosh) title('Hyperbolic Cosine') subplot(3,1,3) plot(x, y_tanh) title('Hyperbolic Tangent') ``` This will produce three separate plots for the hyperbolic sine, cosine, and tangent functions.

Step by step solution

01

1. Hyperbolic Sine function

Here is how to write a MATLAB function for the hyperbolic sine function: \[ \text{function y = sinhfunc(x)} \\ \text{y = (exp(x) - exp(-x))/2;} \\ \text{end} \]
02

2. Hyperbolic Cosine function

Here is how to write a MATLAB function for the hyperbolic cosine function: \[ \text{function y = coshfunc(x)} \\ \text{y = (exp(x) + exp(-x))/2;} \\ \text{end} \]
03

3. Hyperbolic Tangent function

And here is how to write a MATLAB function for the hyperbolic tangent function: \[ \text{function y = tanhfunc(x)} \\ \text{y = (exp(x) - exp(-x))/(exp(x) + exp(-x));} \\ \text{end} \]
04

4. Plotting the Functions

Now that we have the functions, we can make the plots of each function. Here's how to do it in MATLAB: \[ \text{x = linspace(-5, 5, 1000);} \\ \text{y_sinh = sinhfunc(x);} \\ \text{y_cosh = coshfunc(x);} \\ \text{y_tanh = tanhfunc(x);} \\ \text{subplot(3,1,1)} \\ \text{plot(x, y_sinh)} \\ \text{title('Hyperbolic Sine')} \\ \text{subplot(3,1,2)} \\ \text{plot(x, y_cosh)} \\ \text{title('Hyperbolic Cosine')} \\ \text{subplot(3,1,3)} \\ \text{plot(x, y_tanh)} \\ \text{title('Hyperbolic Tangent')} \\ \] This code will produce three separate plots, one each for the hyperbolic sine, cosine and tangent functions. The linspace function is used to generate a vector of evenly spaced points within a specified range, in this case from -5 to 5. This vector is then used as the input to each of the functions, and the output is plotted against the input. The subplot function is used to display multiple plots in a single figure window.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

Hyperbolic Functions
Hyperbolic functions are mathematical functions that relate to the hyperbola, similar to how trigonometric functions relate to the circle. These functions are crucial in various fields such as engineering, physics, and hyperbolic geometry.
They are defined using exponential functions and are denoted by the prefixes "sinh," "cosh," and "tanh." These functions play a significant role in solving certain types of differential equations, describing the shape of hanging cables (catenary), and in the theory of special relativity.
In MATLAB, hyperbolic functions can be defined using the built-in exponential function combined in specific ways. These definitions rely heavily on the behavior of the exponential function itself. Let's explore each of these hyperbolic functions in detail.
Sinh Function
The sinh function, short for hyperbolic sine, is defined as the average difference of exponential functions. Mathematically, it is given by:
\[\sinh(x) = \frac{e^x - e^{-x}}{2}\]
This function is helpful in describing scenarios where growth trends occur symmetrically in both positive and negative directions. It's often used in physics, specifically in the calculations of special types of integrals and in hyperbolic geometry applications.
In MATLAB, the sinh function can be created with a simple function command:
  • function y = sinhfunc(x)
  • y = (exp(x) - exp(-x)) / 2;
  • end
This code calculates the hyperbolic sine value for any input x.
Cosh Function
Cosh, or hyperbolic cosine, takes the average sum of exponential functions, forming a smooth curve that looks parabolic. Its mathematical definition is:
\[\cosh(x) = \frac{e^x + e^{-x}}{2}\]
The cosh function is often used in engineering, providing solutions for problems involving hyperbolic geometry and in determining the shape of cables under uniform gravitational force (known as the catenary curve).
Implementing a cosh function in MATLAB is straightforward:
  • function y = coshfunc(x)
  • y = (exp(x) + exp(-x)) / 2;
  • end
This function computes the hyperbolic cosine for any given input.
Tanh Function
The tanh function, short for hyperbolic tangent, combines the hyperbolic sine and cosine functions to describe a curve that asymptotically approaches 1 and -1. Its mathematical formula is as follows:
\[\tanh(x) = \frac{e^x - e^{-x}}{e^x + e^{-x}}\]
This function is particularly useful in machine learning for activation functions in neural networks, as it helps normalize the output of functions.
In MATLAB, the tanh function can be programmed simply as:
  • function y = tanhfunc(x)
  • y = (exp(x) - exp(-x)) / (exp(x) + exp(-x));
  • end
This code snippet enables the calculation of the hyperbolic tangent for a given input x. The output ranges between -1 and 1, which is why this function is often used for scaling values.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Modify the selection sort function developed in this chapter so that it accepts a second optional argument, which may be either ' up ' or "down'. If the argument is 'up', sort the data in ascending order. If the argument is 'dewn', sort the data in descending order. If the argument is missing, the default case is to sort the data in ascending order. (Be sure to handle the case of invalid arguments, and be sure to include the proper help information in your function.)

Derivative in the Presence of Noise. We will now explore the effects of input noise on the quality of a numerical derivative. First, generate an input vector containing 100 values of the function \(\sin x\) starting at \(x=0\), using a step size \(\Delta x\) of \(0.05\), just as you did in the previous problem. Next, use function randomo to generate a small amount of random noise with a maximum amplitude of \(\pm 0.02\), and add that random noise to the samples in your input vector (see Figure 5.8). Note that the peak amplitude of the noise is only \(2 \%\) of the peak amplitude of your signal, since the maximum value of \(\sin x\) is 1. Now take the derivative of the function using the derivative function that you developed in the last problem. How close to the theoretical value of the derivative did you come?

Gaussian (Normal) Distribution. Function randomo returns a uniformly distributed random variable in the range \([0,1)\), which means that there is an equal probability of any given number in the range occurring on a given call to the function. Another type of random distribution is the Gaussian distribution, in which the random value takes on the classic bellshaped curve shown in Figure 5.9. A Gaussian distribution with an average of \(0.0\) and a standard deviation of \(1.0\) is called a standardized normal distribution, and the probability of any given value occurring in the standardized normal distribution is given by the equation $$ p(x)=\frac{1}{\sqrt{2 \pi}} e^{-x^{2} / 2} $$ It is possible to generate a random variable with a standardized normal distribution starting from a random variable with a uniform distribution in the range \([-1,1)\) as follows. 1\. Select two uniform random variables \(x_{1}\) and \(x_{2}\) from the range \([-1,1)\) such that \(x_{1}^{2}+x_{2}^{2}<1\). To do this, generate two uniform random variables in the range \([-1,1)\), and see if the sum of their squares happens to be less than \(1.0\). If so, use them. If not, try again. 2\. Then each of the values \(y_{1}\) and \(y_{2}\) in the equations that follow will be a normally distributed random variable. $$ \begin{aligned} &y_{1}=\sqrt{\frac{-2 \ln r}{r}} x_{1} \\ &y_{2}=\sqrt{\frac{-2 \ln r}{r} x_{2}} \end{aligned} $$ where $$ r=x_{1}^{2}+x_{2}^{2} $$ a In is the natural logarithm (log to the base e). Write a function that returns a normally distributed random value cach time that it is called. Test your function by getting 1000 random values, calculating the standard deviation, and plotting a histogram of the distribution. How close to \(1.0\) was the standard deviation?

Use the Help Browser to look up information about the standard MATLAB function sortrows and compare the performance of sortrows with the sort-with-carry function created in the previous exercise. To do this, create two copies of a \(1000 \times 2\) element array containing random values, and sort column 1 of each array while carrying along column 2 using both functions. Determine the execution times of each sort function using tic and toe. How does the speed of your function compare with the speed of the standard function sorerows?

Constant False Alarm Rate (CFAR). A simplified radar receiver chain is shown in Figure \(5.10 a\). When a signal is received in this receiver, it contains both the desired information (returns from targets) and thermal noise. After the detection step in the receiver, we would like to be able to pick out received target returns from the thermal noise background. We can do this be setting a threshold level, and then declaring that we see a target whenever the signal crosses that threshold. Unfortunately, it is

See all solutions

Recommended explanations on Psychology Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free