Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Introduction Scripts are great but always think about encapsulating code into functions. This is especially helpful when you create intermediate variables that you don't need

Introduction
Scripts are great but always think about encapsulating code into functions. This is especially helpful when you create intermediate variables that you don't need in your script.
Task
Write a function to calculate given an array of time values, . The function also has two scalar parameters, and .
I'll add one more constraint - the output vector must be a column vector, with dimensions where is the length of the time array.
Skills
Array math using the .* notation
Forcing an array to be a column
% Define the anonymous function. You need to fix the line below.
decayFn = @(t,a,w) cos(t);
% Make a plot for some range of t and parameters a and w
t =0:.01:5; % time (s)
y = decayFn(t,-2,2*pi); % output
plot(t,y);grid;xlabel('Time (s)');ylabel('y');

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_2

Step: 3

blur-text-image_3

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

Building The Data Warehouse

Authors: W. H. Inmon

4th Edition

0764599445, 978-0764599446

More Books

Students also viewed these Databases questions

Question

=+ If not, what improvements can be made?

Answered: 1 week ago