np difference between two arrays code example

Example 1: difference between numpy array and matrix

import numpy as np

a = np.array([[4, 3], [2, 1]])
b = np.array([[1, 2], [3, 4]])
print(a@b)
# [[13 20]
#  [ 5  8]]

Example 2: difference between numpy array and matrix

import numpy as np

a = np.mat('4 3; 2 1')
b = np.mat('1 2; 3 4')
print(a)
# [[4 3]
#  [2 1]]
print(b)
# [[1 2]
#  [3 4]]
print(a*b)
# [[13 20]
#  [ 5  8]]

Example 3: numpy difference between two arrays

import numpy as np
result = np.subtract([1.1, 2.2, 3.3], [1, 2, 3])