|
OpenCMISS-Iron Internal API Documentation
|
Public Member Functions | |
| subroutine | vector_all_values_set_intg (VECTOR, VALUE, ERR, ERROR,) |
| Sets all values in an integer vector to the specified value. More... | |
| subroutine | vector_all_values_set_sp (VECTOR, VALUE, ERR, ERROR,) |
| Sets all values in a single precision vector to the specified value. More... | |
| subroutine | vector_all_values_set_dp (VECTOR, VALUE, ERR, ERROR,) |
| Sets all values in a double precision vector to the specified value. More... | |
| subroutine | vector_all_values_set_l (VECTOR, VALUE, ERR, ERROR,) |
| Sets all values in a logical vector to the specified value. More... | |
Definition at line 243 of file matrix_vector.f90.
| subroutine matrix_vector::vector_all_values_set::vector_all_values_set_dp | ( | type(vector_type), pointer | VECTOR, |
| real(dp), intent(in) | VALUE, | ||
| integer(intg), intent(out) | ERR, | ||
| type(varying_string), intent(out) | ERROR | ||
| ) |
Sets all values in a double precision vector to the specified value.
| vector | A pointer to the vector to set | |
| [in] | value | The value to set the vector to |
| [out] | err | The error code |
| [out] | error | The error string |
Definition at line 4863 of file matrix_vector.f90.
| subroutine matrix_vector::vector_all_values_set::vector_all_values_set_intg | ( | type(vector_type), pointer | VECTOR, |
| integer(intg), intent(in) | VALUE, | ||
| integer(intg), intent(out) | ERR, | ||
| type(varying_string), intent(out) | ERROR | ||
| ) |
Sets all values in an integer vector to the specified value.
| vector | A pointer to the vector to set | |
| [in] | value | The value to set the vector to |
| [out] | err | The error code |
| [out] | error | The error string |
Definition at line 4785 of file matrix_vector.f90.
| subroutine matrix_vector::vector_all_values_set::vector_all_values_set_l | ( | type(vector_type), pointer | VECTOR, |
| logical, intent(in) | VALUE, | ||
| integer(intg), intent(out) | ERR, | ||
| type(varying_string), intent(out) | ERROR | ||
| ) |
Sets all values in a logical vector to the specified value.
| vector | A pointer to the vector to set | |
| [in] | value | The value to set the vector to |
| [out] | err | The error code |
| [out] | error | The error string |
Definition at line 4902 of file matrix_vector.f90.
| subroutine matrix_vector::vector_all_values_set::vector_all_values_set_sp | ( | type(vector_type), pointer | VECTOR, |
| real(sp), intent(in) | VALUE, | ||
| integer(intg), intent(out) | ERR, | ||
| type(varying_string), intent(out) | ERROR | ||
| ) |
Sets all values in a single precision vector to the specified value.
| vector | A pointer to the vector to set | |
| [in] | value | The value to set the vector to |
| [out] | err | The error code |
| [out] | error | The error string |
Definition at line 4824 of file matrix_vector.f90.