home *** CD-ROM | disk | FTP | other *** search
-
- _F_o_r_e_i_g_n _F_u_n_c_t_i_o_n _I_n_t_e_r_f_a_c_e
-
- .C(name, ..., NAOK=FALSE)
- .Fortran(name, ..., NAOK=FALSE)
-
- _A_r_g_u_m_e_n_t_s:
-
- name : a character string giving the name of a C
- function or Fortran subroutine.
-
- ... : arguments to be passed to the foreign func-
- tion.
-
- NAOK : if TRUE then any NA values in the arguments
- are passed on to the foreign function. If
- FALSE, the presence of NA values is regarded
- as an error.
-
- _V_a_l_u_e:
-
- The functions .C and .Fortran can be used to make calls
- to C and Fortran code. The functions return a list
- similar to the ... list of arguments passed in, but
- reflecting any changes made by the C or Fortran code.
-
- These calls are typically made in conjunction with
- dyn.load which links DLLs to R.
-
- _S_e_e _A_l_s_o:
-
- dyn.load.
-
-