CFlex.plot

Creates a Flex instance given the input parameter and plots it. Refer to the Flex documentation for the parameters.

  1. auto plot(string name, S function(S) f0, S function(S) f1, S function(S) f2, S c, S[] points, S left, S right)
    struct CFlex(S)
    const
    plot
    (
    string name
    ,
    in S function
    (
    S
    )
    f0
    ,
    in S function
    (
    S
    )
    f1
    ,
    in S function
    (
    S
    )
    f2
    ,
    S c
    ,
    S[] points
    ,
    S left = -3
    ,
    S right = 3
    )
  2. auto plot(string name, S function(S) f0, S function(S) f1, S function(S) f2, S[] cs, S[] points, S left, S right)

Parameters

name string

name of the plot

f0 S function
(
S
)

log-density distribution

f1 S function
(
S
)

first derivative of f0

f1 S function
(
S
)

first derivative of f1

c S

T_c family to use for the transformation

points S[]

non-overlapping partitioning with at most one inflection point per interval

left S

left plotting border

right S

right plotting border

Meta