如何在python中定义具有类的数据类型的矩阵?

时间:2018-05-06 13:28:24

标签: 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):...

谢谢!

0 个答案:

没有答案