OpenCMISS-Iron Internal API Documentation
|
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... | |
Definition at line 228 of file matrix_vector.f90.
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.
matrix | A pointer to the matrix to set. | |
[in] | row_indices | ROW_INDICES(i). The row index of the i'th value to set |
[in] | column_indices | COLUMN_INDICES(i). The column index of the i'th value to set |
[in] | values | VALUES(i). The value of the i'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix | |
[in] | row_index | The row index of the value to set |
[in] | column_index | The column index of the value to set |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix to set. | |
[in] | row_indices | ROW_INDICES(i). The row index of the ij'th value to set |
[in] | column_indices | COLUMN_INDICES(j). The column index of the ij'th value to set |
[in] | values | VALUES(i,j). The value of the ij'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix | |
[in] | row_indices | ROW_INDICES(i). The row index for the i'th value to set |
[in] | column_indices | COLUMN_INIDICES(i). The column index for the i'th value to set |
[in] | values | VALUES(i). The value of the i'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix | |
[in] | row_index | The row index of the value to set |
[in] | column_index | The column index of the value to set |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix | |
[in] | row_indices | ROW_INDICES(i). The row index for the ij'th value to set |
[in] | column_indices | COLUMN_INIDICES(j). The column index for the ij'th value to set |
[in] | values | VALUES(i,j). The value of the i,j'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix to set | |
[in] | row_indices | ROW_INDICES(i). The row index of the i'th value to set |
[in] | column_indices | COLUMN_INDICES(i). The column index of the i'th value to set |
[in] | values | VALUES(i). The value of the i'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix | |
[in] | row_index | The row index of the value to set |
[in] | column_index | The column index of the value to set |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix to set | |
[in] | row_indices | ROW_INDICES(i). The row index of the ij'th value to set |
[in] | column_indices | COLUMN_INDICES(j). The column index of the ij'th value to set |
[in] | values | VALUES(i,j). The value of the ij'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix to set | |
[in] | row_indices | ROW_INDICES(i). The row index of the i'th value to set |
[in] | column_indices | COLUMN_INDICES(i). The column index of the i'th value to set |
[in] | values | VALUES(i). The value of the i'th value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix | |
[in] | row_index | The row index of the value to set |
[in] | column_index | The column index of the value to set |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The 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.
matrix | A pointer to the matrix to set | |
[in] | row_indices | ROW_INDICES(i). The row index of the ij'th value to set |
[in] | column_indices | COLUMN_INDICES(j). The column index of the ij'th value to set |
[in] | values | VALUES(i,j). The value of the ij'th value to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 4350 of file matrix_vector.f90.