I'm trying to import numpy.matlib but I receive this warning:
Importing from numpy.matlib is deprecated since 1.19.0. The matrix subclass is not the recommended way to represent matrices or deal with linear algebra.
I'm using it for:
np.matlib.repmat(I, 1400, 1)
How can I solve it? Doing the repmat without using the .matlib class?