OpenCMISS-Iron Internal API Documentation
distributed_matrix_vector::distributedmatrix_valuesget Interface Reference

Private Member Functions

subroutine distributed_matrix_values_get_intg (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets values in a distributed integer matrix. More...
 
subroutine distributed_matrix_values_get_intg1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Gets one value in a distributed integer matrix. More...
 
subroutine distributed_matrix_values_get_intg2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets a matrix of values in a distributed integer matrix. More...
 
subroutine distributed_matrix_values_get_sp (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets values in a distributed single precision matrix. More...
 
subroutine distributed_matrix_values_get_sp1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Gets one value in a distributed single precision matrix. More...
 
subroutine distributed_matrix_values_get_sp2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets a matrix of values in a distributed single precision matrix. More...
 
subroutine distributed_matrix_values_get_dp (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets values in a distributed double precision matrix. More...
 
subroutine distributed_matrix_values_get_dp1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Gets one value in a distributed double precision matrix. More...
 
subroutine distributed_matrix_values_get_dp2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets a matrix of values in a distributed double precision matrix. More...
 
subroutine distributed_matrix_values_get_l (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets values in a distributed logical matrix. More...
 
subroutine distributed_matrix_values_get_l1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Gets one value in a distributed logical matrix. More...
 
subroutine distributed_matrix_values_get_l2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Gets a matrix of values in a distributed logical matrix. More...
 

Detailed Description

Definition at line 297 of file distributed_matrix_vector.f90.

Member Function/Subroutine Documentation

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_dp ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
real(dp), dimension(:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets values in a distributed double precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The i'th row index to get
[in]column_indicesCOLUMN_INDICES(i). The i'th column index to get
[out]valuesVALUES(i). On return the i'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4369 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_dp1 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), intent(in)  ROW_INDEX,
integer(intg), intent(in)  COLUMN_INDEX,
real(dp), intent(out)  VALUE,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets one value in a distributed double precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to get a value from
[in]column_indexThe column index to get a value from
[out]valueOn return the value of the matrix at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 4449 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_dp2 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
real(dp), dimension(:,:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets a matrix of values in a distributed double precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The ij'th row index to get
[in]column_indicesCOLUMN_INDICES(j). The ij'th column index to get
[out]valuesVALUES(i,j). On return the ij'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4512 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_intg ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
integer(intg), dimension(:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets values in a distributed integer matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The i'th row index to get
[in]column_indicesCOLUMN_INDICES(i). The i'th column index to get
[out]valuesVALUES(i). On return the i'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4081 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_intg1 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), intent(in)  ROW_INDEX,
integer(intg), intent(in)  COLUMN_INDEX,
integer(intg), intent(out)  VALUE,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets one value in a distributed integer matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to get a value from
[in]column_indexThe column index to get a value from
[out]valueOn return the value of the matrix at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 4129 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_intg2 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
integer(intg), dimension(:,:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets a matrix of values in a distributed integer matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The ij'th row index to get
[in]column_indicesCOLUMN_INDICES(j). The ij'th column index to get
[out]valuesVALUES(i,j). On return the ij'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4177 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_l ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
logical, dimension(:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets values in a distributed logical matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The i'th row index to get
[in]column_indicesCOLUMN_INDICES(i). The i'th column index to get
[out]valuesVALUES(i). On return the i'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4591 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_l1 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), intent(in)  ROW_INDEX,
integer(intg), intent(in)  COLUMN_INDEX,
logical, intent(out)  VALUE,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets one value in a distributed logical matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to get a value from
[in]column_indexThe column index to get a value from
[out]valueOn return the value of the matrix at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 4639 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_l2 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
logical, dimension(:,:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets a matrix of values in a distributed logical matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The ij'th row index to get
[in]column_indicesCOLUMN_INDICES(j). The ij'th column index to get
[out]valuesVALUES(i,j). On return the ij'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4687 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_sp ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
real(sp), dimension(:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets values in a distributed single precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesThe row index to get a value from
[in]column_indicesThe column index to get a value from
[out]valuesOn return the value of the matrix at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 4225 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_sp1 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), intent(in)  ROW_INDEX,
integer(intg), intent(in)  COLUMN_INDEX,
real(sp), intent(out)  VALUE,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets one value in a distributed single precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to get a value from
[in]column_indexThe column index to get a value from
[out]valueOn return the value of the matrix at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 4273 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributedmatrix_valuesget::distributed_matrix_values_get_sp2 ( type(distributed_matrix_type), pointer  DISTRIBUTED_MATRIX,
integer(intg), dimension(:), intent(in)  ROW_INDICES,
integer(intg), dimension(:), intent(in)  COLUMN_INDICES,
real(sp), dimension(:,:), intent(out)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Gets a matrix of values in a distributed single precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indicesROW_INDICES(i). The ij'th row index to get
[in]column_indicesCOLUMN_INDICES(j). The ij'th column index to get
[out]valuesVALUES(i,j). On return the ij'th value to get
[out]errThe error code
[out]errorThe error string

Definition at line 4321 of file distributed_matrix_vector.f90.