标签: python python-3.x python-2.7
我在python中有一个类Neuron,我需要定义一个尺寸为i j的矩阵,它给我,个别ij位置是神经元。
Mneurons = np.arange(matrizi*matrizj).reshape(matrizi,matrizj)
但这是使用datatype = int创建的,我需要使用datatype = Neuron
class Neuron: def __init__(self,name):...
谢谢!