[6237] in s-news-athena

home help back first fref pref prev next nref lref last post

Re: Integration and Algebra in S

daemon@ATHENA.MIT.EDU (Lin Chen)
Sat Jan 21 21:44:58 1995

Date: Sat, 21 Jan 1995 21:20:45 -0500
From: lchen@stat.purdue.edu (Lin Chen)
To: carey@Warp.dmed.iupui.edu, s-news@utstat.toronto.edu

x <- function(c,d) {c*x^2 + d*x}
is not correct. you should add one variable--the integrant.
 
x <- function(c,d) {c*x^2 + d*x}
--> x <- function(c,d,t){c*x^2 + d*x}
    y<- x(3,2,t)

home help back first fref pref prev next nref lref last post