Question: I need help. I can't find much resources on google to read the dimensions from the file. The first 2 numbers in the file will

I need help. I can't find much resources on google to read the dimensions from the file. The first 2 numbers in the file will represent the row and column for the matrix of that file to read.
HOMEWORK: MATRIX ADDITION A matrix is a two-dimensional structure often found in mathematics. For example, a 4 x 3 matrix (which has four rows and three columns) might look like this: 1.2 8.8 1 420 77 2 -5 15 0 44 11 The file that stores this array would be 4 3 1.2 77 0 8.8 2 44 1 -5 11 42 15 -5 where we provide the dimensions at the beginning of the file. The program can then open the file, read the first two values, create an appropriate two-dimensional array, and then read the contents of the file into that array. Two matrices can be added if their dimensionality is the same. For example, the above matrix could only be added to another 4 x 3 matrix. To perform matrix addition, sum the values in each location to produce the resulting matrix. Write a program that prompts the user for the two file names, each containing one matrix. Read the two matrices into two-dimensional arrays and display them. If the dimensionality is the same, compute and display the sum of the two matrices; if not, display an error message. HOMEWORK: MATRIX ADDITION A matrix is a two-dimensional structure often found in mathematics. For example, a 4 x 3 matrix (which has four rows and three columns) might look like this: 1.2 8.8 1 420 77 2 -5 15 0 44 11 The file that stores this array would be 4 3 1.2 77 0 8.8 2 44 1 -5 11 42 15 -5 where we provide the dimensions at the beginning of the file. The program can then open the file, read the first two values, create an appropriate two-dimensional array, and then read the contents of the file into that array. Two matrices can be added if their dimensionality is the same. For example, the above matrix could only be added to another 4 x 3 matrix. To perform matrix addition, sum the values in each location to produce the resulting matrix. Write a program that prompts the user for the two file names, each containing one matrix. Read the two matrices into two-dimensional arrays and display them. If the dimensionality is the same, compute and display the sum of the two matrices; if not, display an error message
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
