Assignment on NumPy
1. Write a NumPy program to compute the multiplication of two given matrixes.
2. . Write a NumPy program to compute the outer product of two given vectors.
3. Write a NumPy program to compute the cross product of two given vectors.
4. . Write a NumPy program to compute the determinant of a given square array.
5. Write a NumPy program to compute the inner product of vectors for 1-D arrays (without
complex conjugation) and in higher dimension.
6. Write a NumPy program to compute the eigenvalues and eigenvectors of a given square
array.
7. Write a NumPy program to find a matrix or vector norm.
8. Write a NumPy program to compute the inverse of a given matrix.
9. Write a NumPy program to compute the sum of the diagonal element of a given array.
10. Write a NumPy program to calculate the Frobenius norm and the condition number of a
given array.