Afferent nerve fiberAfferent nerve fibers are axons (nerve fibers) of sensory neurons that carry sensory information from sensory receptors to the central nervous system. Many afferent projections arrive at a particular brain region. In the peripheral nervous system afferent nerve fibers are part of the sensory nervous system and arise from outside of the central nervous system. Sensory and mixed nerves contain afferent fibers.
Gamma waveA gamma wave or gamma rhythm is a pattern of neural oscillation in humans with a frequency between 25 and 140 Hz, the 40 Hz point being of particular interest. Gamma rhythms are correlated with large scale brain network activity and cognitive phenomena such as working memory, attention, and perceptual grouping, and can be increased in amplitude via meditation or neurostimulation. Altered gamma activity has been observed in many mood and cognitive disorders such as Alzheimer's disease, epilepsy, and schizophrenia.
Filter (higher-order function)In functional programming, filter is a higher-order function that processes a data structure (usually a list) in some order to produce a new data structure containing exactly those elements of the original data structure for which a given predicate returns the boolean value true. In Haskell, the code example filter even [1..10] evaluates to the list 2, 4, ..., 10 by applying the predicate even to every element of the list of integers 1, 2, ...
Dale's principleIn neuroscience, Dale's principle (or Dale's law) is a rule attributed to the English neuroscientist Henry Hallett Dale. The principle basically states that a neuron performs the same chemical action at all of its synaptic connections to other cells, regardless of the identity of the target cell. However, there has been disagreement about the precise wording. Because of an ambiguity in the original statement, there are actually two versions of the principle, one that has been shown definitively to be false, and another that remains a valuable rule of thumb.
Metadata registryA metadata registry is a central location in an organization where metadata definitions are stored and maintained in a controlled method. A metadata repository is the database where metadata is stored. The registry also adds relationships with related metadata types. A metadata engine collects, stores and analyzes information about data and metadata (data about data) in use within a domain. Metadata registries are used whenever data must be used consistently within an organization or group of organizations.
Map (higher-order function)In many programming languages, map is the name of a higher-order function that applies a given function to each element of a collection, e.g. a list or set, returning the results in a collection of the same type. It is often called apply-to-all when considered in functional form. The concept of a map is not limited to lists: it works for sequential containers, tree-like containers, or even abstract containers such as futures and promises. Suppose we have a list of integers [1, 2, 3, 4, 5] and would like to calculate the square of each integer.