Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python plot arrays from matrix

plt.figure()
for i in range(len(a)):
    plt.plot(a[i], b[i])
plt.show()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #plot #arrays #matrix
ADD COMMENT
Topic
Name
6+9 =