Last data update: 2014.03.03

R: Exponential Grid Definition
expGridR Documentation

Exponential Grid Definition

Description

The function defines an exponential series, which can be used, e.g. when defining the parameter space when training some models such as Support Vector Machines or Gaussian Processes.

Usage

expGrid(power.from, power.to, power.by, base)

Arguments

power.from

The starting exponential of the series.

power.to

The latest exponential of the series.

power.by

The exponential step of the series.

base

The base of the exponential series.

Value

A vector with the exponential series.

Author(s)

Isidro Cortes <isidrolauscher@gmail.com>

Examples

expGrid(power.from=-10,power.to=10,power.by=2,base=10)

Results