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

Private Member Functions

subroutine distributed_matrix_values_add_intg (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds values to a distributed integer matrix. More...
 
subroutine distributed_matrix_values_add_intg1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Adds one value to a distributed integer matrix. More...
 
subroutine distributed_matrix_values_add_intg2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds a matrix of values to a distributed integer matrix. More...
 
subroutine distributed_matrix_values_add_sp (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds values to a distributed single precision matrix. More...
 
subroutine distributed_matrix_values_add_sp1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Adds one value to a distributed single precision matrix. More...
 
subroutine distributed_matrix_values_add_sp2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds a matrix of values to a distributed single precision matrix. More...
 
subroutine distributed_matrix_values_add_dp (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds values to a distributed double precision matrix. More...
 
subroutine distributed_matrix_values_add_dp1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Adds one value to a distributed double precision matrix. More...
 
subroutine distributed_matrix_values_add_dp2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds a matrix of values to a distributed double precision matrix. More...
 
subroutine distributed_matrix_values_add_l (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds values to a distributed logical matrix. More...
 
subroutine distributed_matrix_values_add_l1 (DISTRIBUTED_MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Adds one value to a distributed logical matrix. More...
 
subroutine distributed_matrix_values_add_l2 (DISTRIBUTED_MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Adds a matrix of values to a distributed logical matrix. More...
 

Detailed Description

Definition at line 252 of file distributed_matrix_vector.f90.

Member Function/Subroutine Documentation

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds values to a distributed double precision matrix.

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

Definition at line 3713 of file distributed_matrix_vector.f90.

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

Adds one value to a distributed double precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to add a value to
[in]column_indexThe column index to add a value to
[in]valueThe value to add at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 3796 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds a matrix of values to a distributed double precision matrix.

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

Definition at line 3859 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds values to a distributed integer matrix.

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

Definition at line 3425 of file distributed_matrix_vector.f90.

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

Adds one value to a distributed integer matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to add a value to
[in]column_indexThe column index to add a value to
[in]valueThe value to add at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 3473 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds a matrix of values to a distributed integer matrix.

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

Definition at line 3521 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds values to a distributed logical matrix.

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

Definition at line 3937 of file distributed_matrix_vector.f90.

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

Adds one value to a distributed logical matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to add a value to
[in]column_indexThe column index to add a value to
[in]valueThe value to add at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 3985 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds a matrix of values to a distributed logical matrix.

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

Definition at line 4033 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds values to a distributed single precision matrix.

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

Definition at line 3569 of file distributed_matrix_vector.f90.

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

Adds one value to a distributed single precision matrix.

Parameters
distributed_matrixA pointer to the distributed matrix
[in]row_indexThe row index to add a value to
[in]column_indexThe column index to add a value to
[in]valueThe value to add at the specified row and column
[out]errThe error code
[out]errorThe error string

Definition at line 3617 of file distributed_matrix_vector.f90.

subroutine distributed_matrix_vector::distributed_matrix_values_add::distributed_matrix_values_add_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(in)  VALUES,
integer(intg), intent(out)  ERR,
type(varying_string), intent(out)  ERROR 
)
private

Adds a matrix of values to a distributed single precision matrix.

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

Definition at line 3665 of file distributed_matrix_vector.f90.