h_01 <- function ( x ) #*****************************************************************************80 # ## h_01() evaluates 2 - x. # # Licensing: # # This code is distributed under the MIT license. # # Modified: # # 13 June 2021 # # Author: # # John Burkardt # # Input: # # real X, the point at which F is to be evaluated. # # Output: # # real VALUE, the value of the function at X. # { value = 2.0 - x return ( value ) }