human-modelling-framework
Version:
Human sensorimotor control modelling framework based on Markkula et al's paper (DOI: 10.1007/s00422-017-0743-9)
15 lines (12 loc) • 346 B
text/typescript
import { Pr } from "./Pr";
export interface LinkOutput {
reset: boolean[];
outVal: number;
}
export interface LinkFunction {
// function transforming the perceptual cues into a perceptual quantity
(
activity: number | number[],
Pr: Pr | Pr[] // input perceptual cues value
): LinkOutput; // output perceptual quantity value
}