Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(vector), | intent(in) | :: | vec_1 | |||
type(vector), | intent(in) | :: | vec_2 |
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed arrows point from an interface to procedures which implement that interface. This could include the module procedures in a generic interface or the implementation in a submodule of an interface in a parent module. Where possible, edges connecting nodes are given different colours to make them easier to distinguish in large graphs.
FUNCTION vector_subtract(vec_1, vec_2)
! PURPOSE OF THIS SUBROUTINE:
! This subroutine allows for the subtraction of two vectors.
! METHODOLOGY EMPLOYED:
! Uses the subtraction operator (-) to allow for this
! operation. As in:
! Vector=Vector1-Vector2
TYPE (vector) :: vector_subtract
TYPE (vector), INTENT(IN) :: vec_1, vec_2
vector_subtract%x = vec_1%x - vec_2%x
vector_subtract%y = vec_1%y - vec_2%y
vector_subtract%z = vec_1%z - vec_2%z
RETURN
END FUNCTION vector_subtract