Delegate EvalFunctional
- Namespace
- Ofs
- Assembly
- Ofs.Api.dll
Functional eval (worker thread) for a stateless node: given time t, read the N input
values in ins and write the M output values (0..100) into outs.
public delegate void EvalFunctional(double t, ReadOnlySpan<float> ins, NodeContext ctx, Span<float> outs)
Parameters
tdouble- Functional eval (worker thread) for a stateless node: given time t, read the N input values in ins and write the M output values (0..100) into outs.
insReadOnlySpan<float>- Functional eval (worker thread) for a stateless node: given time t, read the N input values in ins and write the M output values (0..100) into outs.
ctxNodeContext- Functional eval (worker thread) for a stateless node: given time t, read the N input values in ins and write the M output values (0..100) into outs.
outsSpan<float>- Functional eval (worker thread) for a stateless node: given time t, read the N input values in ins and write the M output values (0..100) into outs.