OpenCMISS-Iron Internal API Documentation
matrix_vector::matrix_values_set Interface Reference

Public Member Functions

subroutine matrix_values_set_intg (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the values in an integer matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_intg1 (MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Sets a value in an integer matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_intg2 (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the matrix of values in an integer matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_sp (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the values in a single precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_sp1 (MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Sets the value in a single precision real matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_sp2 (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the matrix of values in a single precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_dp (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the values in a double precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_dp1 (MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Sets a value in a double precision real matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_dp2 (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the matrix of values in a double precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_l (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the values in a logical matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_l1 (MATRIX, ROW_INDEX, COLUMN_INDEX, VALUE, ERR, ERROR,)
 Sets a value in a logical matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE. More...
 
subroutine matrix_values_set_l2 (MATRIX, ROW_INDICES, COLUMN_INDICES, VALUES, ERR, ERROR,)
 Sets the matrix of values in a logical matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE. More...
 

Detailed Description

Definition at line 228 of file matrix_vector.f90.

Member Function/Subroutine Documentation

subroutine matrix_vector::matrix_values_set::matrix_values_set_dp ( type(matrix_type), pointer  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 
)

Sets the values in a double precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

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

Definition at line 4419 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_dp1 ( type(matrix_type), pointer  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 
)

Sets a value in a double precision real matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE.

Parameters
matrixA pointer to the matrix
[in]row_indexThe row index of the value to set
[in]column_indexThe column index of the value to set
[in]valueThe value to set
[out]errThe error code
[out]errorThe error string

Definition at line 4484 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_dp2 ( type(matrix_type), pointer  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 
)

Sets the matrix of values in a double precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

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

Definition at line 4533 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_intg ( type(matrix_type), pointer  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 
)

Sets the values in an integer matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

Parameters
matrixA pointer to the matrix
[in]row_indicesROW_INDICES(i). The row index for the i'th value to set
[in]column_indicesCOLUMN_INIDICES(i). The column index for the i'th value to set
[in]valuesVALUES(i). The value of the i'th value to set
[out]errThe error code
[out]errorThe error string

Definition at line 4053 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_intg1 ( type(matrix_type), pointer  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 
)

Sets a value in an integer matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE.

Parameters
matrixA pointer to the matrix
[in]row_indexThe row index of the value to set
[in]column_indexThe column index of the value to set
[in]valueThe value to set
[out]errThe error code
[out]errorThe error string

Definition at line 4118 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_intg2 ( type(matrix_type), pointer  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 
)

Sets the matrix of values in an integer matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

Parameters
matrixA pointer to the matrix
[in]row_indicesROW_INDICES(i). The row index for the ij'th value to set
[in]column_indicesCOLUMN_INIDICES(j). The column index for the ij'th value to set
[in]valuesVALUES(i,j). The value of the i,j'th value to set
[out]errThe error code
[out]errorThe error string

Definition at line 4167 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_l ( type(matrix_type), pointer  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 
)

Sets the values in a logical matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

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

Definition at line 4602 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_l1 ( type(matrix_type), pointer  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 
)

Sets a value in a logical matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE.

Parameters
matrixA pointer to the matrix
[in]row_indexThe row index of the value to set
[in]column_indexThe column index of the value to set
[in]valueThe value to set
[out]errThe error code
[out]errorThe error string

Definition at line 4667 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_l2 ( type(matrix_type), pointer  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 
)

Sets the matrix of values in a logical matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

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

Definition at line 4716 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_sp ( type(matrix_type), pointer  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 
)

Sets the values in a single precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

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

Definition at line 4236 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_sp1 ( type(matrix_type), pointer  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 
)

Sets the value in a single precision real matrix at the location specified by the row and column index i.e., MATRIX(I,J)=VALUE.

Parameters
matrixA pointer to the matrix
[in]row_indexThe row index of the value to set
[in]column_indexThe column index of the value to set
[in]valueThe value to set
[out]errThe error code
[out]errorThe error string

Definition at line 4301 of file matrix_vector.f90.

subroutine matrix_vector::matrix_values_set::matrix_values_set_sp2 ( type(matrix_type), pointer  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 
)

Sets the matrix of values in a single precision real matrix at the location specified by the row and column indices i.e., MATRIX(I,J)=VALUE.

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

Definition at line 4350 of file matrix_vector.f90.