Last data update: 2014.03.03

R: Return vector of values from given interval
slicesR Documentation

Return vector of values from given interval

Description

Returns an ordered vector of values from given interval, of given size, generated by equal steps.

Usage

slices(from, to, n)

Arguments

from

The lower bound of the interval.

to

The upper bound of the interval.

n

The length of the vector to be produced.

Details

Returns a vector of values from from to to (inclusive), with equal difference between two consecutive values, with total length n. Function is useful e.g. together with the pbld or defuzz functions (for the values argument; see also lcut or fcut) or defuzz).

Value

A vector of numbers in the given interval and size.

Author(s)

Michal Burda

See Also

pbld, defuzz, fcut, lcut

Examples

    slices(1, 5, 10) # 1, 1.5, 2, 2.5, 3, 3.5 4, 4.5, 5

Results