A Python 3 program to implement the matrix operations for any 2x2 to 10x10 matrix.
Create structured, commented Python 3 code to implement the matrix operations above for any 3 × 3 matrix.
Additionally, the minimum specification below must be met:
- be console/text-based
- use nested lists and loops
- include user defined functions
- provide a basic menu system to allow the user to:
- Enter and store the data for a 3 × 3 matrix
- Find and display the sum of two 3 × 3 matrices
- Find and display the scalar product of a 3 × 3 matrix
- Find and display the product of two 3 × 3 matrices
- Exit the program in a controlled manner
- all code must be appropriately commented
The task can be broken down as follows:
- Create structured, commented Python 3 code to implement the matrix operation algorithms to the given specification.
- Conduct appropriate testing to ensure your code works for any 3 × 3 matrix.
- Write a technical document using the LaTeX template provided, which explains the operation of your code, and which includes your code listing as an appendix.
LaTeX style technical document are included and detailed information about this project is also in the document. Click on the LaTeX file for more information about this project.
This project is licensed under the MIT License - see the LICENSE file for details