ivxj.split_mat_into_cells ========================= .. py:module:: ivxj.split_mat_into_cells Functions --------- .. autoapisummary:: ivxj.split_mat_into_cells.split_mat_into_cells Module Contents --------------- .. py:function:: split_mat_into_cells(A, Tlens) Split matrix A into submatrices based on the lengths specified in Tlens. This function divides the full dataset into individual submatrices, where the size of each submatrix is determined by the corresponding values in Tlens. :param A: The full dataset to be split into submatrices. :type A: 2D array-like, dtype=float64 :param Tlens: The lengths of each submatrix, indicating how many rows to include in each split. :type Tlens: 1D array-like, dtype=int :returns: A list of submatrices split from the full dataset according to Tlens. :rtype: list of 2D array-like