Path: blob/master/4_matrix_math/4_matrix_math_exercise_solution.ipynb
1141 views
Kernel: Python 3
In [5]:
Solution 1: Convert USD revenues to INR
In [4]:
Out[4]:
array([[15000, 16500, 18750],
[ 5100, 5925, 7875],
[ 8250, 10500, 13500],
[ 6000, 6375, 6750]])
Solution 2: Calculate total flowers sale every month for divine flowers shop
In [6]:
In [7]:
Out[7]:
array([1900, 2640, 1430])