1.) Write a function that can take in two matrix of any size and solve the syste
ID: 3731295 • Letter: 1
Question
1.) Write a function that can take in two matrix of any size and solve the system of equations using matrix operation a. The function will take in two matrix and output one matrix. i. function [Solution]-solveE(AA, BB) First check the size of the two input matrix and determine if they are the right size to be used for solving the unknowns b. i. Determine if AA is a square matrix. If not output "AA is not square" ii. Determine if BB is a column matrix and has the same number of columns as AA. If not output "BB is not a column matrix" or "BB is not the right size" c. If the size of the matrix is acceptable then perform the matrix operation and output the resulting vector 2.) Suppose you know the lengths and the angle (in degrees) between two adjacent sides of a triangle, as shown in the drawing below. You can find the area of the triangle using the following relationship: TriArea-½ * a * b * sin(x) a. Write a function that will take in a matrix in the form of [length_a1, length b1, angle1; length_a2, length b2, angle2;...]. Use a FOR loop to calculate the area of each of the triangles and output a column matrix in the form of [area1:area2;...] function Area-TriArea(AB) b.Explanation / Answer
//1
//please ask 1 question at a time
function Solution=solveEQ(AA,BB)
[r,c]=size(AA);
[r2,c2]=size(BB);
if(r~=c)
Solution="AA is not a square matrix."
else
if c2==1 & r2==r
Solution=AABB;
elseif c2~=1
Solution="BB is not a square matrix."
elseif r2~=r
Solution="BB is not the right size"
end
end
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.