Question: please help matlab + Practice_Lin_Algebra_week2_BB.mx clear all close all %% This script is designed to practice MATLAB coding for BME311 lab curriculum. %% Do not

 please help matlab + Practice_Lin_Algebra_week2_BB.mx clear all close all %% This

script is designed to practice MATLAB coding for BME311 lab curriculum. %%

Do not use without permission or duplicate for other purpose than BME311.

please help matlab

+ Practice_Lin_Algebra_week2_BB.mx clear all close all %% This script is designed to practice MATLAB coding for BME311 lab curriculum. %% Do not use without permission or duplicate for other purpose than BME311. %% Author: Ga-Young Kelly Suh %% Vector definition v_a = [1; 3; 7]; v_b = [4; 0; 2); %% Matrix definition M_A = [8 11 2 8; 0 -7 2 -1; -3 -7 2 1; 1 1 2 4]; M_B [1 -2 0 5; 0 7 1 5; 0 4 4 0; 0 0 0 2]; M_C [-1 -2 2; 2 1 1; 3 4 5); %% Practice 1 %%%% Find the scalar product (v_1) of v_a and v_b. %% Practice 2.1 ***% Find the vector product (v_2_1) of v_a and v_b. %% Practice 2.2 %%%% Find the vector product (v_2_2) of v_b and v_a. %%%% Then, write a script finding if v_2_1 is same with v_2_2. Let the %%%% script to print one of the following: %%%%"(v_a X v_b) = (v_b X v_a)" %%%%"(v_a X v_b) ~= (v_b X v_a)" %%%% function hint: disp %% Practice 3.1 %%%% Find the determinant (M_B_det) of M_B. %% Practice 3.2 %%%% Find the eigenvalue (lambda_M_B) and eigenvectors (v_M_B) of M_B. %%%% function hint: eig 8% Practice 3.3 %%%% Test this eigenvalue and eigenvector. Pick the second column of v_M_B, %%%% and second eigenvalue from lambda_M_B. Is M_B * eigenvector same with **** eigenvalue * eigenvector? %% Practice 3.4 %%%% Find the inverse matrix of M_C, and name as M_C_inv %%%% Find the transpose matrix of M_C, and name as M_C_trans **** Please write a script using 'if' judging if M_C is an orthogonal matrix or not %%%% using M_C_inv and M_C_trans %% Practice (optional) %%%% Find the eigenvalue and eigenvector for the matrix A_test. %%%% Show the result of eigenvalue * eigenvector, for each pair. A_test = [64 48; 0 1000 ; 48 0 36); % lambda1*V1 % lambda2*v2 % lambda3*v3

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!