Handbook
Glossary
push-values ( regress x y -- regress )
Vocabulary
math
.
statistics
.
running
Inputs
regress
an
object
x
an
object
y
an
object
Outputs
regress
an
object
Definition
USING:
combinators
kernel
math.statistics.running.private
sequences
;
IN:
math.statistics.running
::
push-values
( regress x y -- regress )
regress
{
{
[
x y
[
sequence?
]
both?
]
[
x y
[
(push-values)
]
2each
]
}
{
[
x
sequence?
]
[
x
[
y
(push-values)
]
each
]
}
{
[
y
sequence?
]
[
x y
[
(push-values)
]
with
each
]
}
[
x y
(push-values)
]
}
cond
;