Displaying 1 result from an estimated 1 matches for "int_l".
Did you mean:
int_
2007 Jun 14
1
R programming question
...type of analysis. Within
each function, the users is prompted to enter information. An example
is:
cat("Enter value for lower Linf :\n")
L1<-scan(n=1)
cat("Enter value for upper Linf :\n")
L2<-scan(n=1)
cat("Enter Linf interval :\n")
int_L<-scan(n=1)
cat("Enter value for lower K :\n")
K1<-scan(n=1)
cat("Enter value for upper K :\n")
K2<-scan(n=1)
cat("Enter K interval :\n")
int_K<-scan(n=1)
I thought I could evaluate and run the appropriate function at the end
o...