Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

% The same data is used for the activity. These are provided for you. X = [ - 2 - 1 1 2 ] .

%The same data is used for the activity. These are provided for you.
X =[-2-112].'
Y =[3101].'
%Use the length() command to determine the size of the column vector X. Store this value in m.
%Set up the appropriate matrix A to find the best-fit parabola of the form y=C+Dx+Ex^2. The
%first column of A will contain all 1's, using the ones() command. The second column of A
%contains x values that are stored in X. The third column of A contains the squared x values
%that are stored in X. Elementwise multiplication of X by itself, using .* operator, will
%produce the desired values for the third column.
%Calculate the matrix products. These are provided for you.
A_transposeA = A.'* A
A_transposeY = A.'* Y
%Use the backslash operation to solve the overdetermined system. Store this in Soln2.
%Define the x values to use for plotting the best-fit parabola. This creates a vector x.
%This is provided for you.
x=-4: 0.1 :4
%Define the best-fit parabola, storing it in yquadratic. Elementwise multiplication of the
%x values times themselves to square them is achieved by using .* operator (because x is a vector).
%The following sequence of commands plots the data and the best-fit parabola. The command is
%provided for you.
plot(x, yquadratic, X, Y,'k*');grid;shg

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

Databases Illuminated

Authors: Catherine Ricardo

2nd Edition

1449606008, 978-1449606008

More Books

Students also viewed these Databases questions