0%

22-letter words containing m, y, e

  • evolutionary algorithm — (EA) An algorithm which incorporates aspects of natural selection or survival of the fittest. An evolutionary algorithm maintains a population of structures (usually randomly generated initially), that evolves according to rules of selection, recombination, mutation and survival, referred to as genetic operators. A shared "environment" determines the fitness or performance of each individual in the population. The fittest individuals are more likely to be selected for reproduction (retention or duplication), while recombination and mutation modify those individuals, yielding potentially superior ones. EAs are one kind of evolutionary computation and differ from genetic algorithms. A GA generates each individual from some encoded form known as a "chromosome" and it is these which are combined or mutated to breed new individuals. EAs are useful for optimisation when other techniques such as gradient descent or direct, analytical discovery are not possible. Combinatoric and real-valued function optimisation in which the optimisation surface or fitness landscape is "rugged", possessing many locally optimal solutions, are well suited for evolutionary algorithms.
  • fall prey to something — To fall prey to something bad means to be taken over or affected by it.
  • federal reserve system — a U.S. federal banking system that is under the control of a central board of governors (Federal Reserve Board) with a central bank (Federal Reserve Bank) in each of 12 districts and that has wide powers in controlling credit and the flow of money as well as in performing other functions, as regulating and supervising its member banks.
  • fetal alcohol syndrome — a pattern of birth defects caused by maternal consumption of alcohol during pregnancy: considered as one of the fetal alcohol spectrum disorders. Abbreviation: FAS.
  • field emission display — (hardware)   (FED) A type of flat panel display in which field emitting cathodes bombard a phosphor coating causing it to emit light. A field emission display is similar to a cathode ray tube but only a few millimeters thick. They use a large array of fine metal tips or carbon nanotubes (which are the most efficient electron emitters known), to emit electrons through a process known as field emission. Many of these are behind each phosphor dot so FEDs do not display dead pixels like LCDs even if 20% of the emitters fail. Sony is researching FED because it is the flat-panel technology that comes closest to matching the picture of a CRT.
  • genitourinary medicine — the branch of medical science concerned with the study and treatment of diseases of the genital and urinary organs, esp sexually transmitted diseases
  • graph rewriting system — An extension of a term rewriting system which uses graph reduction on terms represented by directed graphs to avoid duplication of work by sharing expressions.
  • heart is in your mouth — If your heart is in your mouth, you feel very excited, worried, or frightened.
  • here's mud in your eye — a humorous drinking toast
  • hermann-mauguin symbol — a notation for indicating a particular point group.
  • hexamethylenetetramine — a white, crystalline, water-soluble powder, C 6 H 12 N 4 , used as a vulcanization accelerator, an absorbent in gas masks, in the manufacture of the explosive RDX and synthetic resins, and in medicine as a diuretic and urinary antiseptic.
  • hybrid multiprocessing — (parallel)   (HMP) The kind of multitasking which OS/2 supports. HMP provides some elements of symmetric multiprocessing, using add-on IBM software called MP/2. OS/2 SMP was planned for release in late 1993.
  • hydrocinnamic aldehyde — a colorless liquid, C 9 H 10 O, having a floral odor, used in perfumery and flavoring.
  • hydrogen embrittlement — the weakening of metal by the sorption of hydrogen during a pickling process, such as that used in plating
  • hypothetical syllogism — a hypothetical syllogism has two uses. In propositional logic it expresses one of the rules of inference, while in the history of logic, it is a short-hand for the theory of consequence
  • in your wildest dreams — If you say that you could not imagine a particular thing in your wildest dreams, you are emphasizing that you think it is extremely strange or unlikely.
  • information technology — the development, implementation, and maintenance of computer hardware and software systems to organize and communicate information electronically. Abbreviation: IT.
  • intentionally homeless — without anywhere to leave because one has left accommodation voluntarily
  • intermediate frequency — the middle frequency in a superheterodyne receiver, at which most of the amplification takes place. Abbreviation: if.
  • java community process — (project)   (JCP) An organization controlled by Sun Microsystems to further the growth of the Java language and runtime. The JCP produces standards called Java Standard Requests, which are "requests" in the same sense as RFCs.
  • katharine meyer grahamKatharine Meyer, 1917–2001, U.S. newspaper publisher.
  • ketamine hydrochloride — a powerful anesthetic, C13H16ClNO·HCl, used in surgery
  • klinefelter's syndrome — an abnormal condition in which at least one extra X chromosome is present in a male: characterized by reduced or absent sperm production, small testicles, and in some cases enlarged breasts.
  • knowledge-based system — (artificial intelligence)   (KBS) A program for extending and/or querying a knowledge base. The related term expert system is normally used to refer to a highly domain-specific type of KBS used for a specialised purpose such as medical diagnosis. The Cyc project is an example of a large KBS.
  • land of milk and honey — a land of unusual fertility and abundance.
  • law enforcement agency — an organization responsible for enforcing the law, such as a police or sheriff department
  • liberal democrat party — The Liberal Democrat Party is the third largest political party in Britain and the main centre party. It believes in improving the constitution and the voting system and in providing good welfare services.
  • limited access highway — expressway
  • lynx real-time systems — A company in Los Gatos, California who distribute LynxOS. E-mail: <[email protected]>, <[email protected]>. Address: 16780 Lark Avenue, Los Gatos, CA 95030, USA. Telephone:: +1 (408) 354 7770, +1 (800) 255 LYNX. Fax: +1 (408) 354 7085.
  • make a monkey (out) of — to make appear foolish or laughable
  • management consultancy — a company of professionals who are employed to help an organization improve efficiency and performance
  • martin luther king day — the third Monday in January, a legal holiday in some states of the U.S., commemorating the birthday (Jan. 15) of Martin Luther King, Jr.
  • memory management unit — (hardware, memory management)   (MMU, "Paged Memory Management Unit", PMMU) A hardware device or circuit that supports virtual memory and paging by translating virtual addresses into physical addresses. The virtual address space (the range of addresses used by the processor) is divided into pages, whose size is 2^N, usually a few kilobytes. The bottom N bits of the address (the offset within a page) are left unchanged. The upper address bits are the (virtual) page number. The MMU contains a page table which is indexed (possibly associatively) by the page number. Each page table entry (PTE) gives the physical page number corresponding to the virtual one. This is combined with the page offset to give the complete physical address. A PTE may also include information about whether the page has been written to, when it was last used (for a least recently used replacement algorithm), what kind of processes (user mode, supervisor mode) may read and write it, and whether it should be cached. It is possible that no physical memory (RAM) has been allocated to a given virtual page, in which case the MMU will signal a "page fault" to the CPU. The operating system will then try to find a spare page of RAM and set up a new PTE to map it to the requested virtual address. If no RAM is free it may be necessary to choose an existing page, using some replacement algorithm, and save it to disk (this is known as "paging"). There may also be a shortage of PTEs, in which case the OS will have to free one for the new mapping. In a multitasking system all processes compete for the use of memory and of the MMU. Some memory management architectures allow each process to have its own area or configuration of the page table, with a mechanism to switch between different mappings on a process switch. This means that all processes can have the same virtual address space rather than require load-time relocation. An MMU also solves the problem of fragmentation of memory. After blocks of memory have been allocated and freed, the free memory may become fragmented (discontinuous) so that the largest contiguous block of free memory may be much smaller than the total amount. With virtual memory, a contiguous range of virtual addresses can be mapped to several non-contiguous blocks of physical memory. In early designs memory management was performed by a separate integrated circuit such as the MC 68851 used with the Motorola 68020 CPU in the Macintosh II or the Z8015 used with the Zilog Z80 family of processors. Later CPUs such as the Motorola 68030 and the ZILOG Z280 have MMUs on the same IC as the CPU.
  • merry wives of windsor — a comedy (1598–1602?) by Shakespeare.
  • metasyntactic variable — (grammar)   Strictly, a variable used in metasyntax, but often used for any name used in examples and understood to stand for whatever thing is under discussion, or any random member of a class of things under discussion. The word foo is the canonical example. To avoid confusion, hackers never (well, hardly ever) use "foo" or other words like it as permanent names for anything. In filenames, a common convention is that any filename beginning with a metasyntactic-variable name is a scratch file that may be deleted at any time. To some extent, the list of one's preferred metasyntactic variables is a cultural signature. They occur both in series (used for related groups of variables or objects) and as singletons. Here are a few common signatures: bazola, ztesch: Stanford (from mid-'70s on). zxc, spqr, wombat: Cambridge University (England). shme: Berkeley, GeoWorks, Ingres. Pronounced /shme/ with a short /e/. blarg, wibble: New Zealand Of all these, only "foo" and "bar" are universal (and baz nearly so). The compounds foobar and "foobaz" also enjoy very wide currency. Some jargon terms are also used as metasyntactic names; barf and mumble, for example. See also Commonwealth Hackish for discussion of numerous metasyntactic variables found in Great Britain and the Commonwealth.
  • methyl isobutyl ketone — a colorless, slightly water-soluble, flammable liquid, C 6 H 1 2 O, having a pleasant odor: used as a solvent for nitrocellulose, gums, resins, fats, waxes, and oils.
  • microspectrophotometry — a spectrophotometer for examining light emitted, transmitted, or reflected by minute objects.
  • microwave spectroscopy — the determination of those frequencies of the microwave spectrum that are selectively absorbed by certain materials, providing information about atomic, molecular, and crystalline structure.
  • mind your own business — an occupation, profession, or trade: His business is poultry farming.
  • mind-your-own-business — baby's-tears.
  • monday morning disease — azoturia (def 2).
  • mother carey's chicken — any of various small petrels, especially the stormy petrel, Oceanites oceanicus.
  • motorcycle combination — a motorcycle with a sidecar attached
  • mpeg-2.5 audio layer 3 — (compression, standard, algorithm, file format)   A non-standard extention of MPEG-2 audio layer 3 by FhG for lowest sampling rates (8-12 kHz) targeting bit rates from 16-32 kbps (possibly 8-160 kbps).
  • myalgic encephalopathy — a condition characterized by painful muscles, extreme fatigue, and general debility, sometimes occurring as a sequel to viral illness
  • native language system — (NLS) A set of interfaces specified by X/Open for developing applications to run in different natural language environments.
  • nickel-cadmium battery — a storage battery, with an alkaline electrolyte, having nickel oxide as the positive element and cadmium as the negative.
  • nodal switching system — (NSS) Main routing nodes in the NSFnet backbone.
  • non-euclidean geometry — geometry based upon one or more postulates that differ from those of Euclid, especially from the postulate that only one line may be drawn through a given point parallel to a given line.
  • nonmonetary advantages — the beneficial aspects of an employment, such as the stimulation of the work, attractiveness of the workplace, or its nearness to one's home, that do not reflect its financial remuneration
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?