sparse_extract_sparse_column_double(_:_:_:_:_:_:_:)
Extracts values from a specified column of a double-precision sparse matrix.
Declaration
func sparse_extract_sparse_column_double(_ A: sparse_matrix_double!, _ column: sparse_index, _ row_start: sparse_index, _ row_end: UnsafeMutablePointer<sparse_index>!, _ nz: sparse_dimension, _ val: UnsafeMutablePointer<Double>!, _ indx: UnsafeMutablePointer<sparse_index>!) -> sparse_statusParameters
- A:
The sparse matrix, A, which must have been created with Sparse_matrix_create_double(_:_:). Sparse_illegal_parameter is returned if not met.
- column:
The column for value extraction.
- row_start:
The index of the row to start extraction.
- row_end:
On return, holds the row index of the next nonzero value.
- nz:
The number of values to extract from
A. Each ofjndxandvalare of sizenz. - val:
Pointer to array to hold the values extracted from the sparse matrix. The value is extracted from the location specified by the corresponding indices of
columnandjndx. Must be of sizenzelements. If less thannznonzero values are found, then the lastnz - actual_nonzero_countelements of val are untouched. - indx:
An array to hold the extracted row indices that correspond to the values in
val. Note that these indices are relative to the matrix column and not the starting row index specified byrow``_start. Returned indices are 0 based (first element of pointer isptr[0]). Must be of sizenzelements.
Return Value
On success val and jndx have been updated with the nonzero values of the column’th row, row_end holds the row index of the next nonzero value, and the number of nonzero values written are returned. If A creation requirements are not met, SPARSE_ILLEGAL_PARAMETER is returned and val and jndx are unchanged.
Discussion
Extract the first nz values of the column beginning at A[column,row_start] for the sparse matrix A. The number of nonzero values extracted is limited by nz, and the number of nonzero’s written to indx and val are returned. Additionally, the row index of the next nonzero value is returned in row_end. For example if nz is returned, not all nonzero values have been extracted, and a second extract can start from row_end.
See Also
Value extraction
sparse_extract_sparse_row_double(_:_:_:_:_:_:_:)sparse_extract_sparse_row_float(_:_:_:_:_:_:_:)sparse_extract_sparse_column_float(_:_:_:_:_:_:_:)sparse_extract_sparse_column_double_complex(_:_:_:_:_:_:_:)sparse_extract_sparse_column_float_complex(_:_:_:_:_:_:_:)sparse_extract_sparse_row_float_complex(_:_:_:_:_:_:_:)sparse_extract_sparse_row_double_complex(_:_:_:_:_:_:_:)