Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please use scilab, and show everything and I will give thumbs up! :) 1.) Write a function that can take in two matrix of any

image text in transcribedPlease use scilab, and show everything and I will give thumbs up! :)

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

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

Beginning ASP.NET 4.5 Databases

Authors: Sandeep Chanda, Damien Foggon

3rd Edition

1430243805, 978-1430243809

More Books

Students also viewed these Databases questions