0%

13-letter words containing u, n, c, o, f

  • flow function — The flow function is the relationship between the strength of a compact and the degree of compaction.
  • fluctuational — Of, pertaining to, or resulting from fluctuation(s).
  • fluorescently — In a fluorescent manner; using fluorescence.
  • fluorocarbons — Plural form of fluorocarbon.
  • fluoroscoping — Present participle of fluoroscope.
  • flying column — (formerly) a force of troops equipped and organized to move swiftly and independently of a principal unit to which it is attached.
  • fold function — (programming)   In functional programming, fold or "reduce" is a kind of higher-order function that takes as arguments a function, an initial "accumulator" value and a data structure (often a list). In Haskell, the two flavours of fold for lists, called foldl and foldr are defined like this: foldl :: (a -> b -> a) -> a -> [b] -> a foldl f z [] = z foldl f z (x:xs) = foldl f (f z x) xs foldr :: (a -> b -> b) -> b -> [a] -> b foldr f z [] = z foldr f z (x:xs) = f x (foldr f z xs) In both cases, if the input list is empty, the result is the value of the accumulator, z. If not, foldl takes the head of the list, x, and returns the result of recursing on the tail of the list using (f z x) as the new z. foldr returns (f x q) where q is the result of recursing on the tail. The "l" and "r" in the names refer to the associativity of the application of f. Thus if f = (+) (the binary plus operator used as a function of two arguments), we have: foldl (+) 0 [1, 2, 3] = (((0 + 1) + 2) + 3 (applying + left associatively) and foldr (+) 0 [1, 2, 3] = 0 + (1 + (2 + 3)) (applying + right associatively). For +, this makes no difference but for an non-commutative operator it would.
  • forcing house — a place where growth or maturity (as of fruit, animals, etc) is artificially hastened
  • foreconscious — the preconscious.
  • fork luncheon — déjeuner à la fourchette.
  • form function — (jargon)   The shape of something designed. This term is currently (Feb 1998) in vogue among marketroids.
  • fractiousness — refractory or unruly: a fractious animal that would not submit to the harness.
  • fracture zone — a long, narrow rift on the ocean floor, separating areas of differing depth: where such a zone crosses a mid-ocean ridge, it displaces the ridge by faulting.
  • frumentaceous — of the nature of or resembling wheat or other grain.
  • fuel injector — injector (def 2b).
  • fugaciousness — (obsolete) fugacity.
  • function room — a room designated for official or formal social gatherings or ceremonies
  • function word — a word, as a preposition, article, auxiliary, or pronoun, that chiefly expresses grammatical relationships, has little semantic content of its own, and belongs to a small, closed class of words whose membership is relatively fixed (distinguished from content word).
  • functionalise — to make functional.
  • functionalism — (usually initial capital letter) Chiefly Architecture, Furniture. a design movement evolved from several previous movements or schools in Europe in the early 20th century, advocating the design of buildings, furnishings, etc., as direct fulfillments of material requirements, as for shelter, repose, or the serving of food, with the construction, materials, and purpose clearly expressed or at least not denied, and with aesthetic effect derived chiefly from proportions and finish, purely decorative effects being excluded or greatly subordinated. the doctrines and practices associated with this movement. Compare rationalism (def 4).
  • functionalist — a person who advocates, or works according to, the principles of functionalism.
  • functionality — of or relating to a function or functions: functional difficulties in the administration.
  • functionalize — to make functional.
  • functionaries — Plural form of functionary.
  • furaciousness — the quality of being furacious or thievish
  • genuflections — Plural form of genuflection.
  • ground effect — the improvement to the aerodynamic qualities of a low-slung motor vehicle resulting from a cushion of air beneath it
  • gyrofrequency — the frequency of rotation of an electron or other charged particle in a magnetic field, directly proportional to the charge of the particle and to the field strength and inversely proportional to the mass of the particle.
  • half coupling — a flange fixed at the end of each of the two shafts that are connected in a flange coupling
  • hash function — (programming)   A hash coding function which assigns a data item distinguished by some "key" into one of a number of possible "hash buckets" in a hash table. The hash function is usually combined with another more precise function. For example a program might take a string of letters and put it in one of twenty six lists depending on its first letter. Ideally, a hash function should distribute items evenly between the buckets to reduce the number of hash collisions. If, for example, the strings were names beginning with "Mr.", "Miss" or "Mrs." then taking the first letter would be a very poor hash function because all names would hash the same.
  • hyperfunction — abnormally increased function, especially of glands or other organs.
  • ichneumon fly — any of numerous wasplike insects of the family Ichneumonidae, the larvae of which are parasitic on caterpillars and immature stages of other insects.
  • ichthyofaunal — relating to ichthyofauna
  • inefficacious — not able to produce the desired effect; ineffective.
  • infostructure — The technical infrastructure supporting an information system.
  • infructuously — in an infructuous or unfruitful manner; fruitlessly
  • inns of court — (in England) the four private unincorporated societies in London that function as a law school and have the exclusive privilege of calling candidates to the English bar
  • interfunction — the kind of action or activity proper to a person, thing, or institution; the purpose for which something is designed or exists; role.
  • justification — a reason, fact, circumstance, or explanation that justifies or defends: His insulting you was ample justification for you to leave the party.
  • liquefactions — Plural form of liquefaction.
  • liquification — Alternative form of liquefaction.
  • loss function — (in decision theory) a function that expresses the loss incurred when a decision is made in terms of various factors.
  • low frequency — any frequency between 30 and 300 kilohertz. Abbreviation: LF.
  • malfunctional — Not functioning as intended.
  • malfunctioned — Simple past tense and past participle of malfunction.
  • manufactories — Plural form of manufactory.
  • memo function — (programming)   (Or "memoised function") A function that remembers which arguments it has been called with and the result returned and, if called with the same arguments again, returns the result from its memory rather than recalculating it. Memo functions were invented by Professor Donald Michie of Edinburgh University. The idea was further developed by Robin Popplestone in his Pop2 language long before it was ever worked into LISP. This same principle is found at the hardware level in computer architectures which use a cache to store recently accessed memory locations. A Common Lisp package by Marty Hall <[email protected]> ftp://archive.cs.umbc.edu/pub/Memoization.
  • metafunctions — Plural form of metafunction.
  • misconfigured — Simple past tense and past participle of misconfigure.
  • motherfucking — a mean, despicable, or vicious person.
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?