rhybrid: Random Sampler for the "Hybrid Rosenbrock Function"

Description Usage Arguments Value Examples

View source: R/main.R

Description

Random Sampler for the hybrid rosenbrock function, with two list of vectors parameters b and input x/ xprime.

Usage

1
rhybrid(n,a,b,mu)

Arguments

n

Sample size.

mu

Density shift.

a

Parameters for xprime.

b

List of parameters corresponding to input blocks.

Value

Returns a sample of size n from the "hybrid" Rosenbrock distribution.

Examples

1
2
3
4
5
6
7
8
9
a <- 1
mu <- - 1

b <- list(c(3,2),
          c(2,2))

n <- 100

rhybrid(n = n,a = a,b = b,mu = mu)

Rosenbrock documentation built on March 15, 2020, 5:06 p.m.