question numbers 2. Create the following matrix in Matlab (There should be 15 values total) (6pts) scores = [87 97 48 70
Posted: Sat May 14, 2022 4:49 pm
question numbers 2. Create the following matrix in Matlab (There should be 15 values total) (6pts) scores = [87 97 48 70 84 82 84 96 74 9 55 93 80 97 12] 3. Write a for loop that will add all the scores together (adding one score per loop) and then divide by the total number of scores to determine the average score.(6pts) 4. Add a selection structure to the for loop that will determine the total number of scores greater than 90. (6pts) 5. Use the fprintf command to print to the screen the number of exam scores greater than 90. This should present with no decimals and also update if the scores matrix is changed. (6pts) 6. Use symbolic variables in Matlab to solve the following system of equations: (10 pts) 15x + 5y - 32 = 16 3x - 8y +22-8 4x + 3y - 72 = 0