OpenCMISS-Iron Internal API Documentation
|
Public Member Functions | |
subroutine | matrix_all_values_set_intg (MATRIX, VALUE, ERR, ERROR,) |
Sets all values in an integer matrix to the specified value. More... | |
subroutine | matrix_all_values_set_sp (MATRIX, VALUE, ERR, ERROR,) |
Sets all values in a single precision matrix to the specified value. More... | |
subroutine | matrix_all_values_set_dp (MATRIX, VALUE, ERR, ERROR,) |
Sets all values in a double precision matrix to the specified value. More... | |
subroutine | matrix_all_values_set_l (MATRIX, VALUE, ERR, ERROR,) |
Sets all values in a logical matrix to the specified value. More... | |
Definition at line 184 of file matrix_vector.f90.
subroutine matrix_vector::matrix_all_values_set::matrix_all_values_set_dp | ( | type(matrix_type), pointer | MATRIX, |
real(dp), intent(in) | VALUE, | ||
integer(intg), intent(out) | ERR, | ||
type(varying_string), intent(out) | ERROR | ||
) |
Sets all values in a double precision matrix to the specified value.
matrix | A pointer to the matrix | |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 379 of file matrix_vector.f90.
subroutine matrix_vector::matrix_all_values_set::matrix_all_values_set_intg | ( | type(matrix_type), pointer | MATRIX, |
integer(intg), intent(in) | VALUE, | ||
integer(intg), intent(out) | ERR, | ||
type(varying_string), intent(out) | ERROR | ||
) |
Sets all values in an integer matrix to the specified value.
matrix | A pointer to the matrix | |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 301 of file matrix_vector.f90.
subroutine matrix_vector::matrix_all_values_set::matrix_all_values_set_l | ( | type(matrix_type), pointer | MATRIX, |
logical, intent(in) | VALUE, | ||
integer(intg), intent(out) | ERR, | ||
type(varying_string), intent(out) | ERROR | ||
) |
Sets all values in a logical matrix to the specified value.
matrix | A pointer to the matrix | |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 418 of file matrix_vector.f90.
subroutine matrix_vector::matrix_all_values_set::matrix_all_values_set_sp | ( | type(matrix_type), pointer | MATRIX, |
real(sp), intent(in) | VALUE, | ||
integer(intg), intent(out) | ERR, | ||
type(varying_string), intent(out) | ERROR | ||
) |
Sets all values in a single precision matrix to the specified value.
matrix | A pointer to the matrix | |
[in] | value | The value to set |
[out] | err | The error code |
[out] | error | The error string |
Definition at line 340 of file matrix_vector.f90.