What is an augmented matrix?
An augmented matrix is a matrix that is obtained by appending the columns of two given matrices. Let’s say we are given two matrices A and B. A is an mxn matrix and B is a mxp matrix. Now, we can append the columns of B after the columns of A. The created matrix C will be an augmented matrix.
So, if A and B are the following 3×3 and 3×1 matrices, then the augmented matrix C will be:
How to create an augmented matrix using Python NumPy?
We can use the following Python code to create an augmented matrix using NumPy…
0 Comments