Answers for "convert list of list in numpy matrix"

1

convert list to numpy array

import numpy as np
npa = np.asarray(Lists, dtype=np.float32)
Posted by: Guest on January-18-2021
0

list of list to numpy array

>>> lists = [[1, 2], [3, 4]]
>>> np.array(lists)
array([[1, 2],
       [3, 4]])
Posted by: Guest on March-02-2021

Code answers related to "convert list of list in numpy matrix"

Python Answers by Framework

Browse Popular Code Answers by Language