MatConn#
- class brainpy.connect.MatConn(conn_mat, **kwargs)[source]#
Connector built from the dense connection matrix.
- build_mat()[source]#
Build a binary matrix connection data.
If users want to customize their connections, please provide one of the following functions:
build_mat(): build a matrix binary connection matrix.build_csr(): build a csr sparse connection data.build_coo(): build a coo sparse connection data.build_conn(): deprecated.
- Returns:
conn (
Array) – A binary matrix with the shape(num_pre, num_post).