Answers for "convert list into numpy matrix"

0

python numpy matrix to list

import numpy as np
x = np.matrix([[1,2,3],
               [7,1,3],
               [9,4,3]])
y = x.tolist()

y --> [[1, 2, 3], [7, 1, 3], [9, 4, 3]]
Posted by: Guest on June-28-2021

Code answers related to "convert list into numpy matrix"

Python Answers by Framework

Browse Popular Code Answers by Language