search for: subdvisions

Displaying 1 result from an estimated 1 matches for "subdvisions".

Did you mean: subdivisions
2007 Mar 08
2
integrate function (PR#9557)
Full_Name: Bert De Boeck Version: R 2.2.0 OS: Windows Submission from: (NULL) (157.193.193.152) I think there is a bug when using integrate for integrating a function which is 0 in a whole sub-interval. For example: #define uniform function f<-function(x){ifelse(x<1,0,ifelse(x<3,1,0))} #this is the correct integral integrate(f,-10,10) #here there is a problem integrate(f,-50,50)