Question
Solve With MATLAB Create an m-file with the following array assignments and then write additional lines in your m-file to answer all the parts below.
Solve With MATLAB
Create an m-file with the following array assignments and then write additional lines in your m-file to answer all the parts below.
a =
1 3 5 9
9 1 1 1
0 0 10 3
b =
1
1
9
c =
10 11 12 9
(a) Create a 3x1 array d that is the sum of vector b and the vector formed from the second column of a. The rules for matrix addition are here (Links to an external site.).
(b) Create a 1x4 array f that is the sum of c and the first row of a.
(c) Create a 3x4 array g, where the first element of b is added to every element in the first row of a, the second element of b is added to every element in the second row of a, and the third element of b is added to every element in the third row of a.
(d) Create a 1x7 array h, where the elements of b make up the first three elements of h and the elements of c make up the last four elements of h.
(e) Create 1x4 array k, where the elements are obtained from element-by-element multiplication of c and the first row of a.
(f) Create a 3x1 array n that is obtained from matrix multiplication of a and the transpose of c
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started