forked from VimPlug/jedi
32 lines
396 B
Python
32 lines
396 B
Python
import pylab
|
|
pylab.
|
|
|
|
# two gotos
|
|
#! ['module numpy']
|
|
import numpy
|
|
|
|
#! ['module random']
|
|
import numpy.random
|
|
|
|
#? ['array2string']
|
|
numpy.array2string
|
|
|
|
#? ['shape']
|
|
numpy.matrix().shape
|
|
|
|
#? ['random_integers']
|
|
pylab.random_integers
|
|
|
|
#? []
|
|
numpy.random_integers
|
|
|
|
#? ['random_integers']
|
|
numpy.random.random_integers
|
|
#? ['sample']
|
|
numpy.random.sample
|
|
|
|
import numpy
|
|
na = numpy.array([1,2])
|
|
#? ['a']
|
|
na.
|