Displaying 3 results from an estimated 3 matches for "amount2".
Did you mean:
amount
2013 Apr 21
1
lsoda question from deSolve package
..."]* y[1] - p["k21"] *y[2]
list(c(dy1, dy2))
}
p <- c(k=k, k12=k12, k21=k21, V=V)
result <- lsoda( yini, times, pkmod, p,rtol = 1e-08, atol = 1e-08,events = list(data = events))
result <- data.frame(result)
names(result) <- c("time","Amount1", "Amount2")
plot(result$Amount1 ~ result$time, type="b", main="Central", xlab="time", ylab="Amount")
plot(result$Amount2 ~ result$time, type="b", main="Peripheral", xlab="time", ylab="Amount")
What I would like to do is to s...
2004 Jan 22
4
Fitting compartmental model with nls and lsoda?
...;k21"]*C[2])
list(c(Cd1, Cd2))
}
#Solve the system of differential equations, including initial values
result <- lsoda( c(0,0), times, Cprime, p)
#Reformat the result
result <- data.frame(result)
names(result) <- c("time","Conc", "Amount2")
#Have a look at the result
print(result)
plot(result$Conc ~ result$time, type="b", main="Central compartment", xlab="time", ylab="Conc")
plot(result$Amount2 ~ result$time, type="b", main="Second compartment", xlab = "time"...
2006 Feb 17
4
PayPal WSDL API on Rails anyone ?
Hi !
Has anyone connected to the Mass Pay API of PayPal using Rails ? I
need to do this for a customer, and I wanted to know how easy/hard it
was. I have no experience using SOAP, WSDL, etc.
I saw soap4r[1] on the RAA[2]. This is probably what I''ll need to
use. One question I haven''t answered yet is whether soap4r will
accept PayPal''s certificates ?
Thanks for any