Procedure for finding derivatives from an array
Uses 3 point lagrangian method to calculate the derivative of an array
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Float64), | intent(in), | dimension(:) | :: | x | X Values |
|
real(kind=Float64), | intent(in), | dimension(:) | :: | y | Y Values |
|
real(kind=Float64), | intent(out), | dimension(:) | :: | yp | Derivative of Y w.r.t. X |
Uses 3 point lagrangian method to calculate the partial derivative of an array Z w.r.t X and Y
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=Float64), | intent(in), | dimension(:) | :: | x | X Values |
|
real(kind=Float64), | intent(in), | dimension(:) | :: | y | Y Values |
|
real(kind=Float64), | intent(in), | dimension(:,:) | :: | z | Z Values |
|
real(kind=Float64), | intent(out), | dimension(:,:) | :: | zxp | Derivative of Z w.r.t. X |
|
real(kind=Float64), | intent(out), | dimension(:,:) | :: | zyp | Derivative of Z w.r.t. Y |