View source: R/slicesDeprecated.R
slices | R Documentation |
Returns an ordered vector of values from given interval, of given size, generated by equal steps.
slices(from, to, n)
from |
The lower bound of the interval. |
to |
The upper bound of the interval. |
n |
The length of the vector to be produced. |
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
).
A vector of numbers in the given interval and size.
Michal Burda
pbld
, defuzz
, fcut
,
lcut
## Not run:
slices(1, 5, 10) # 1, 1.5, 2, 2.5, 3, 3.5 4, 4.5, 5
## End(Not run)
# is the same as
seq(1, 5, length.out=10)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.