libsim Versione 7.2.0
|
◆ soptio_d()
Set the output value to input, if input is present, otherwise set it to missing value.
Definizione alla linea 211 del file optional_values.f90. 212DOUBLE PRECISION,INTENT(in),OPTIONAL :: var
213DOUBLE PRECISION,INTENT(out) :: optio_d
214
215if (present(var))then
216 optio_d=var
217else
218 optio_d=rdmiss
219end if
220
|