ExtractMatrixColumn Interface

public interface ExtractMatrixColumn

Contents


Module Procedures

private pure subroutine ExtractMatrixColumn_lsr(this, column_number, column_out)

Extract a column from the matrix.

Arguments

Type IntentOptional Attributes Name
type(Matrix_lsr), intent(in) :: this

The matrix to extract from.

integer, intent(in) :: column_number

The column to extract.

type(Matrix_lsr), intent(inout) :: column_out

The column representing that row.

private pure subroutine ExtractMatrixColumn_lsc(this, column_number, column_out)

Extract a column from the matrix.

Arguments

Type IntentOptional Attributes Name
type(Matrix_lsc), intent(in) :: this

The matrix to extract from.

integer, intent(in) :: column_number

The column to extract.

type(Matrix_lsc), intent(inout) :: column_out

The column representing that row.