WienerCDF | R Documentation |
Calculates the first-passage time cumulative distribution function of the diffusion model.
WienerCDF(
t,
response,
a,
v,
w,
t0 = 0,
sv = 0,
sw = 0,
st0 = 0,
precision = NULL,
K = NULL,
n.threads = FALSE,
n.evals = 6000
)
pWDM(
t,
response,
a,
v,
w,
t0 = 0,
sv = 0,
sw = 0,
st0 = 0,
precision = NULL,
K = NULL,
n.threads = FALSE,
n.evals = 6000
)
t |
First-passage time. Numeric vector. |
response |
Response boundary. Character vector with |
a |
Upper barrier. Numeric vector. |
v |
Drift rate. Numeric vector. |
w |
Relative starting point. Numeric vector. |
t0 |
Non-decision time. Numeric vector |
sv |
Inter-trial variability of drift rate. Numeric vector. Standard deviation of a normal distribution |
sw |
Inter-trial variability of relative starting point. Numeric vector. Range of uniform distribution |
st0 |
Inter-trial variability of non-decision time. Numeric vector. Range of uniform distribution |
precision |
Optional numeric value. Precision of the CDF. Numeric value. Default is |
K |
Optional. Number of iterations to calculate the infinite sums. Numeric value (integer). Default is
We recommend using either default ( |
n.threads |
Optional numerical or logical value. Number of threads to use. If not provided (or 1 or |
n.evals |
Optional. Number of maximal function evaluations in the numeric integral if sv, sw, and/or st0 are not zero. Default is |
A list of the class Diffusion_cdf
containing
cdf
: the CDF,
logcdf
: the log-transformed CDF,
call
: the function call,
err
: the absolute error. Only provided if sv, sw, or st0 is non-zero. If numerical integration is used, the precision cannot always be guaranteed.
Raphael Hartmann
Blurton, S. P., Kesselmeier, M., & Gondan, M. (2012). Fast and accurate calculations for cumulative first-passage time distributions in Wiener diffusion models. Journal of Mathematical Psychology, 56(6), 470–475. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1016/j.jmp.2012.09.002")}
Gondan, M., Blurton, S. P., & Kesselmeier, M. (2014). Even faster and even more accurate first-passage time densities and distributions for the Wiener diffusion model. Journal of Mathematical Psychology, 60, 20–22. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1016/j.jmp.2014.05.002")}
Hartmann, R., & Klauer, K. C. (2021). Partial derivatives for the first-passage time distribution in Wiener diffusion models. Journal of Mathematical Psychology, 103, 102550. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1016/j.jmp.2021.102550")}
WienerCDF(t = 1.2, response = "upper", a = 1.1, v = 13, w = .6, precision = NULL, K = NULL)
pWDM(t = 1.2, response = "upper", a = 1.1, v = 13, w = .6, precision = NULL, K = NULL)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.