pyFDN.fdn_matrix_gallery#
- pyFDN.fdn_matrix_gallery(N=None, matrix_type=None)[source]#
Return a feedback matrix of the requested type, or list all type names.
- Parameters:
- Return type:
- Returns:
Feedback matrix of shape
(N, N), or a list of type-name strings.
Example:
fdn_matrix_gallery() # → list of type strings fdn_matrix_gallery(4, "orthogonal") fdn_matrix_gallery(8, "Hadamard")