Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

this is matlab problem. Introduction Computing the derivatives of functions are a critical step in most optimization problems. In this exercise, we will look at

this is matlab problem.

Introduction Computing the derivatives of functions are a critical step in most optimization problems. In this exercise, we will look at the sine wave or sinusoid, which desribes a smooth, repetitive oscillation. Its most basic form, as a function of time, is as follows: f(t) = A sin(t + ) (1) In the equation above, A is referred to as the amplitude, is the angular frequency, and is the phase. In this program, you will implement an animation that draws the tangent line on the sine wave using the derivative for each point in the input domain (the number of elements in the domain vector is specified later in the assignment). You will approximate the derivative and draw the tangent line at each point as an animation. One method to approximate derivatives for arbitrary functions is called finite differences. The basic idea is to look at a point (x, f(x)) and its neighbor to the right (called forward difference) (x + h, f(x + h)) or neighbor to the left (x h, f(x h)) (called backward difference), and approximate the slope using differences as follows: d[f(x)] dx = f(x) x = f(x + h) f(x) (x + h) x (2) You are to compute the derivative (forward) at each point in the domain using a for loop, and draw the tangent line, as in Figure 1, as an animation for all points (except last) on the time domain. The animation should be smooth, as you progress from left to right, the tangent should be horizontal on peaks and troughs because the derivative (or the slope) is zero. Your program has to follow exact specifications as follows: The program has to prompt the user for A, and . The domain of the sine function will consist of 500 equally spaced elements between 0 and 4. You have to use a for loop and iterate through 1:end-1. elements of the domain.

image text in transcribed

Figure 1: Sample visualization of derivative at a point on the sine wave. On the left: A = 1, = 1, = 0, on the right: A = 2, = 2, = 0. You have to implement forward differences to compute derivative value at each point . You will compute the tangent line using the slope and draw it with the plot command as two points, solid red, and x markers. The length of the tangent line is 2 seconds (from current t 1 to t + 1). You will plot a blue solid dot at the point at which you are currently computing the derivative for using the scatter command. Your program will label the x-axis as t and y-axis y(t). Your program will make a legend, exactly like the one given in the example figure above.

Figure title The title of the figures in the examples above contain numbers. The title command takes a string argument, which can be thought of as a row vector of characters. For example disp([AB, CD]) will display ABCD. The MATLAB function num2str converts a number to string. Take the following code as an example: t = 3.433; dt = 1.034; figure_title = [The derivative at t=, num2str(t), is: , num2str(dt)]; title(figure_title); The above code will set the current figure title to: The derivative at t=3.433 is: 1.034. Use the code above as a guide to set your figure title as shown in the example Figure 1 above. This has to be done for every frame

Derivative at t-4.2559 is: 0.42941 Derivative at t 4.2559 is: -2.5245 sin(t) tangent line point on sin(t) sin(t) _targent line point on sin(t) 10 12 10 12

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

Database Fundamentals Study Guide

Authors: Dr. Sergio Pisano

1st Edition

B09K1WW84J, 979-8985115307

More Books

Students also viewed these Databases questions

Question

To identify HRM functions when it is created.

Answered: 1 week ago

Question

To understand the role of HRM as a business development partner.

Answered: 1 week ago