I have a question: In R for Biexponential Model can I use a data that contains negatives ??? Because it gives me ERROR !!! Is it possible that the negative numbers be the reason for that Errors ?
My function for Biexponential in R is:
A1*exp(-exp(lrc1)*input)+A2*exp(-exp(lrc2)*input)
Where:
input - a numeric vector of values at which to evaluate the model.
A1 - a numeric parameter representing the multiplier of the first exponential.
lrc1 - a numeric parameter representing the natural logarithm of the rate constant of the first exponential.
A2 - a numeric parameter representing the multiplier of the second exponential.
lrc2 - a numeric parameter representing the natural logarithm of the rate constant of the second exponential.