Nothing
## File Name: cdm_pem_algorithm_compute_Pnew.R
## File Version: 0.01
cdm_pem_algorithm_compute_Pnew <- function( tt, P0, P1, P2)
{
Pnew <- (1-tt)^2 * P0 + 2*tt*(1-tt)*P1 + tt^2 * P2
return(Pnew)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.