Each of the two drums and connected hubs of 8-in.radius weighs 200 lb and has a radius of gyrationabout its center of 15 in. Calculate the angular accelerationof each drum. Friction in each bearing isnegligible.
ENGR 121 B Lecture Notes for 9/26/2016 Spencer Kociba Summary of Lecture: how to classify, categorize, modify and conduct operations using matrices and vectors in MATLAB (which stands for Matrix Laboratory) MATRICES ● Matrix: stores a set of values of the same type ○ every value is an element ○ Matrix = m rows, n columns ● Creating Matrices ○ Ex. >> m=[ 1,4,6; 7,8,10; 2,7,15; 3,7,8] becomes a 4x3 matrix ■ 1,4,6 = 1st row, 7,8,10 = 2nd row, etc. ■ ; indicates the end of a row ■ MATLAB will show an error if your elements and the size of the matrix don