get_h_hp_vector | R Documentation |
Generator of h
and hp
(derivative of h
) functions.
get_h_hp_vector(mode, para = NULL, para2 = NULL)
mode |
A string, see details. |
para |
May be optional. A number, the first parameter. Default to |
para2 |
May be optional. A number, the second parameter. Default to |
Helper function of get_h_hp()
. Please refer to get_hs_hp()
.
A function that returns a matrix with hx=h(x)
(element-wise) and hpx=hp(x)
(element-wise derivative of h
) cbind
ed when applied to a vector or a matrix x
, where if x
is a vector, the returned value will have two columns and number of rows equal to length(x)
, otherwise it will have the same number of rows as x
and number of columns doubled.
get_h_hp_vector("mcp", 2, 4)
get_h_hp_vector("min_log_pow", 1, log(1+3))
get_h_hp_vector("min_pow", 1, 3)
get_h_hp_vector("min_softplus")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.