Copyright © Philip M. Parker, INSEAD. Terms of Use.

Parameter

Definitions: Parameter

Parameter

Noun

1. A constant in the equation of a curve that can be varied to yield a family of similar curves.

2. Any factor that defines a system and determines (or limits) its performance.

3. A quantity (such as the mean or variance) that characterizes a statistical population and that can be estimated by calculations from sample data.

Source: WordNet 1.7.1 Copyright © 2001 by Princeton University. All rights reserved.
 

Date "parameter" was first used: 1656. (references)

Etymology: Parameter \Pa*ram"e*ter\, noun. [Prefix para- -meter: compare to the French expression param[`e]tre.]. (Websters 1913)



Specialty Definitions: Parameter

DomainDefinitions

Computing

Parameter argument. Source: The Free On-line Dictionary of Computing.

Aerospace

1. In general, any quantity of a problem that is not an independent variable. More specifically, the term is often used to distinguish, from dependent variables, quantities which may be assigned more or less arbitrary values for purposes of the problem at hand. 2. In statistical terminology, any numerical constant derived from a population or a probability distribution. Specifically, it is an arbitrary constant in the mathematical expression of a probability distribution. For example, in the distribution given by f(z) = ae-ax the constant a is a parameter.3. In celestial mechanics , the semi-latus rectum. (references)

Avian

(1) A statistical parameter is a numerical characteristic about the population of interest (Freedman et al. 1978:301); (2) A model parameter is a numerical quantity that mediates the relationships between variables in a model (Starfield and Bleloch 1986:4). (references)

Environment

A variable, measurable property whose value is a determinant of the characteristics of a system; e.g. temperature, pressure, and density are parameters of the atmosphere. (references)

Math

A measurable or derived variable representedby the data (e.g. air temperature, snow depth, relative humidity. (references)

Mathematics

This word occurs in its customary mathematical meaning of an unknown quantity which may vary over a certain set of values. In statistics it most usually occurs in expressions defining frequency distributions(population parameters)or in models describing stochastic situation(e. g. regression parameters). The domain of permissible variation of the parameters defines the class of population or model under consideration. Source: European Union. (references)

Mining

A. A constant or variable in a mathematical expression that distinguishes various specific situations. b. In crystallography, one of the three non-coplanar vectors whichdescribe a lattice. Syn:lattice parameter. (references)

Science

A constant whose values determine the specific form or characteristics of an expression. (references)

Source: compiled by the editor from various references; see credits.

Top     

Specialty Definition: Parameter

(From Wikipedia, the free Encyclopedia)

A parameter is a measurement or value on which something else depends.

For example, a parametric equaliser is a tone control circuit that allows the frequency of maximum cut or boost to be set by one control, and the size of the cut or boost by another. These settings, the frequency and level of the peak or trough, are two of the parameters of a frequency response curve, and in a two-control equaliser they completely describe the curve. More elaborate parametric equalisers may allow other parameters to be varied, such as skew. These parameters each describe some aspect of the response curve seen as a whole, over all frequencies. By way of contrast, a graphic equaliser provides individual level controls for various frequency bands, each of which acts only on that particular frequency band.

In mathematics there is little difference in meaning between parameter and argument of a function. It is usually a matter of convention (and therefore a historical accident) whether some or all the arguments of a function are called parameters. The best way to explain this is to illustrate it with examples.

In computing the parameters passed to a function subroutine are more normally called arguments.

In logic the parameters passed to (or operated on by) an open predicate are called variables.

Analytic geometry

In analytic geometry, curves are often given as the image of some function. The argument of the function is invariably called "the parameter". A circle of radius 1 centered at the origin can be specified in more than one form:

where t is the "parameter".

Mathematical analysis

In mathematical analysis, one often considers "integrals dependent on a parameter". These are of the form

Now, if we performed the substitution x=g(y), it would be called a "change of variable".

Probability theory

In probability theory, one may describe the distribution of a random variable as belonging to a family of probability distributions, distinguished from each other by the values of a finite number of parameters. For example, one talks about "a Poisson distribution with mean value λ", or "a normal distribution with mean μ and variance σ2". The latter formulation and notation leaves some ambiguity whether σ or σ2 is the second parameter; the distinction is not always relevant.

It is possible to use the sequence of moments (mean, mean square, ...) or cumulants (mean, variance, ...) as parameters for a probability distribution.

Statistics

In statistics, the probability framework above still holds, but attention shifts to estimating the parameters of a distribution based on observed data, or testing hypotheses about them. In classical estimation these parameters are considered "fixed but unknown", but in Bayesian estimation they are random variables with distributions of their own.

Statistics are mathematical characteristics of samples which are used as estimates of parameters, mathematical characteristics of the populations from which the samples are drawn. For example, the sample mean () is an estimate of the mean parameter (μ) of the population from which the sample was drawn.

Computer

On the computer, parameters are used to differentiate behavior or pass input data to computer programs or their subprograms. See parameter for detail.




Parameter (computer science)

(From Wikipedia, the free Encyclopedia)

In computer science, parameters are a way of allowing the same sequence of commands to operate on different data without re-specifying the instructions.

For example, take the following list of instructions:

  1. Take an object.
  2. Break it into little pieces.
  3. Throw it away.

In this case, the object that the instructions are to operate on is the parameter. If we give this process a name like Destroy, then referring to Destroy followed by the desired object will perform the actions on that object.

For instance:

  1. Destroy rock.
  2. Destroy cake.
  3. Destroy car.

will apply the instructions above to a rock, cake, and car respectively.

The sequence of instructions is usually made into a subprogram and the object to operate on is specified while invoking the subprogram. The actual value given to a subprogram while invoking it, viz. rock, cake or car is called an actual parameter or an argument and the placeholder within the subprogram used to describe the operations on the argument is called a formal parameter or simply a parameter.

Calling conventions

Parameters can be passed to subprograms in several ways:

      swap (a, b)
      {
         tmp = a;
         a = b;
         b = tmp;
      }
When swap (x, tmp) is called by macro-expansion (where x has the value 42 and tmp has the value 64), the effect is for the caller to execute the following:
      tmp = x;
      x = tmp;
      tmp = tmp;
This places the value 42 in both x and temp.

Actual parameters in call-by-macro-expansion do not necessarily need to be lvalues, but errors may occur with certain usages if they are not.

Call by name may also not have the same effect as call by reference or copy-restore, as can be seen by the following example:
      swap (a, b)
      {
         tmp = a;
         a = b;
         b = tmp;
      }
When swap (i, a[i]) is called by name (where a[i] represents the ith element of an array a, if i happens to have the value 9, what happens is the following:
  • After tmp = a, tmp becomes 9.
After a = b, a (which evaluates to i) gets the value stored in a[9] and hence i also gets that value.
In b = tmp, b evaluates to a[i] but by now i has the value stored in a[9]. Hence a[a[9]] is modified and not a[9] as intended. On the other hand call by reference and by copy-restore would both correctly swap the values stored in i and a[i].

As with call-by-macro-expansion, call-by-name parameters do not necessarily need to be lvalues, but depending on the usage, problems may occur if they are not.

On a more conceptual level, one may distinguish between parameters for input, for output or both. Virtually all older programming languages regard output and both as identical, but more modern languages as C# make a distinction.

On the technical level, input parameters are implemented as by value, while the other two types are implemented as by reference.

Source: adapted by the editor from Wikipedia, the free encyclopedia under a copyleft GNU Free Documentation License (GFDL) from the article "Parameter."

Top     

Synonym: Parameter

Synonym: parametric quantity (n). (additional references)

Top     

Crosswords: Parameter

English words defined with "parameter": Latus rectumMarkoff chain, Markov chainparametricstationary stochastic process, stochastic processUnicursal. (references)
Specialty definitions using "parameter": 90% Marginal Confidence Intervalacceptable quality level, acoustic attenuation log, adiabatic invariant, alpha conversion, Application Program Interface, asymmetric characteristic circuit element, asymmetric circuit element, asymmetric element, asymmetric element of a circuit, asymmetric-characteristic circuit element, asymptotically locally optimal design, automatic gain control, axial elementbarotropic vorticity equation, Bartholomew's problem, Belugou imperfection coefficient, Bernoulli process, binary exponential backoff, Brinell hardness number, buffer factorcapacitated facility location, characteristic exhaust velocity, characteristic-value problem, climate sensitivity, clipped time series, Coastal Zone Color Scanner, collision parameter, conditionally unbiased estimator, conditionally unbiassed estimator, confidence bound, confidence limit, constant-gain region, constrained parameter, constrained system parameter stream, Convective Temperature, coriolis parameter, cumulative probability distribution, cutting theoremDe Bruijn notation, default parameters, derived information, diffuse prior, digital audio, directory entry section, DOS/OS2 environment variable, double Poisson distribution, DYNAMIC VALIDSeigenfunction, electrochemical transducer, electromigration, ELECTRONIC INTELLIGENCE OPERATIONS SPECIALIST, endocytosis, error of the third kind, exceptions, executable variable, Extended Self-containing Prologfacility location, falsified passport, fiducial distribution, fiducial limits, fiducial probability distribution, file descriptor, first detection, forged passport, Fortran 77Gauss-Markov theorem, generalised Bayes'decision rule, generalised gamma distribution, generalised multinomial distribution, generalized Bayes'decision rule, generalized gamma distribution, generalized multinomial distributionhigh level language, higher order language, high-order language, hue, saturation, brightnessinformative prior, Internet Corporation for Assigned Names and Numbers, interpreted parameter literallattice constant, Likelihood Functions, linear argument, Linear Models, line-by-line recalculation, locally asymptotically most stringent testmangled name, Measurement Accuracy, median unbiasedness, median unbiassedness, metallurgical length, modulating pacemaker, most selective confidence intervalsnamed entity reference, naming rules parameter, Non Return to Zero Inverted, non-basic, nondimensional parameter, nonlinear distortion, non-linear distortion. (references)
Non-English Usage: "Parameter" is also a word in the following languages with English translations in parentheses.

Danish (parameter), Dutch (parameter), German (parameter, parameters), Swedish (parameter).

Top     

Commercial Usage: Parameter

DomainTitle

Books

  • Experiments: Planning, Analysis, and Parameter Design Optimization (reference)

  • Identification and System Parameter Estimation 1988 (reference)

  • Parameter Estimation and Hypothesis Testing in Linear Models (reference)

  • Robust Control: The Parameter Space Approach (Communications and Control Engineering) (reference)

  • Sedimentary Modeling: Computer Simulation and Methods for Improved Parameter Definition/Bulletin 233 (reference)

    (more book examples)

  

Periodicals

  

Music

Source: compiled by the editor from various references; see credits.

Top     

Non-Fiction Usage: Parameter

SubjectTopicQuote

Health

The practice parameter was published in Neurology in 2000, and in Pediatrics in 2001. Other medical and professional journals are expected to publish the parameter in the future. (references)

Subsequently, many medical academies, professional organizations, and parent and advocacy groups in autism, led by the American Academy of Neurology and the Child Neurology Society, met to build on the Panel's base, developing a practice parameter and providing clinical guidance for screening and diagnosing autism. (references)

Economic History

Norway

Norwegian monetary policy is aimed at maintaining a stable exchange rate for the krone against European currencies, of which the "euro" is a key operating parameter. (references)

Source: compiled by the editor from ICON Group International, Inc.; see credits.

Top     

Usage Frequency: Parameter

"Parameter" is generally used as a noun (singular) -- approximately 100.00% of the time. "Parameter" is used about 592 times out of a sample of 100 million words spoken or written in English. Its rank is based on over 700,000 words used in the English language. Some parts-of-speech are not covered due to the samples used by the British National Corpus. (note: percents less than one-hundredth of one percent have been omitted)
Parts of SpeechPercentUsage per
100 Million Words
Rank in English
Noun (singular)100%59210,744

Source: compiled by the editor from several corpora; see credits.

Top     

Expressions: Parameter

Expressions using "parameter": constrained parameter constrained system parameter stream coriolis parameter dummy parameter formal parameter free variable parameter incidental parameter interpreted parameter literal naming rules parameter omitted tag minimization parameter parameter group identifier parameter negotiation between modems parameter RAM proposed parameter Reynolds parameter. Additional references.

Hypenated Usage

Ending with "parameter": h-parameter, two-parameter.

Source: compiled by the editor from various references; see credits.

Top     

Frequency of Internet Keywords: Parameter

The following statistics estimate the number of searches per day across the major English-language search engines as identified by various trade publications. Hyperlinks lead to commercial use of the expression at Amazon.com.
 
ExpressionFrequency
per Day

parameter

154

degradation microbial parameter

46

parameter unknown value

26

s parameter

23

incorrect parameter

21

solubility parameter

14

parameter small thiele

11

command line parameter

9

fanuc parameter

7

example global parameter

6
Source: compiled by the editor from various references; see credits.

Top     

Modern Translations: Parameter

Language Translations for "parameter"; alternative meanings/domain in parentheses.

Albanian

  

parametër (rating), faktor kufizues. (various references)

   

Arabic 

  

‏عامل متغير في التجربة. (various references)

   

Bulgarian 

  

параметър. (various references)

   

Chinese 

  

参量. (various references)

   

Czech

  

parametr, charakteristika. (various references)

   

Danish

  

parameter (dummy argument, dummy parameter, formal parameter). (various references)

   

Dutch

  

parameter. (various references)

   

Esperanto

  

parametro. (various references)

   

Farsi 

  

پارامتر, مقداری ازیک مدار, مقدارمعلوم ومشخص , نسبت میان تقاطع دوسطح . (various references)

   

Finnish

  

parametri, muodollinen parametri (dummy argument, dummy parameter, formal parameter). (various references)

   

French

  

paramètre. (various references)

   

German

  

Parameter (parameters). (various references)

   

Greek 

  

παράμετρος (argument, dummy argument, dummy parameter, formal parameter), εικονικό όρισμα (dummy argument, dummy parameter, formal parameter), εικονική παράμετρος (dummy argument, dummy parameter, formal parameter), τυπική παράμετρος (dummy argument, dummy parameter, formal parameter). (various references)

   

Hebrew 

  

פרמטר. (various references)

   

Hungarian

  

segédváltozó (auxiliary variable), paraméter. (various references)

   

Italian

  

parametro (dummy argument, dummy parameter, formal parameter). (various references)

   

Japanese Kanji 

  

パラフィン紙 (parabola, parabola antenna, paraffin paper, parallax, parallel, Paralympics, paramedical, parameter file, parametric, parametron, paraphrase), '介変数 . (various references)

   

Japanese Katakana 

  

パラメーター , パラメータ , パラメタ , ばいかいへ"すう. (various references)

   

Korean 

  

매개변수. (various references)

   

Pig Latin

  

arameterpay.(various references)

   

Portuguese

  

parâmetro (paramilitary). (various references)

   

Romanian

  

parametru, indice (index), caracteristicã (characteristic, impress, mode, note, particularity, quiddity, speciality, specific feature). (various references)

   

Russian 

  

параметр (argument). (various references)

   

Serbo-Croatian

  

parametar, obim (ambit, amplitude, bulk, circumference, extent, girth, latitude, perimeter, scope, volume). (various references)

   

Spanish

  

parámetro (caliber, calibre). (various references)

   

Swedish

  

parameter. (various references)

   

Turkish

  

parametre, katsayı (coefficient, exponent, factor, multiple), karakteristik özellik. (various references)

   

Ukranian 

  

параметр. (various references)

   

Vietnamese 

  

tham số, tham biến. (various references)

Source: compiled by the editor from various translation references.

Top     

Ancestral Language Translations: Parameter

LanguagePeriodTranslations
Greek700 BCE-300 CE

para-. (various references)

Source: compiled by the editor from various references.

Top     

Derivations & Misspellings: Parameter

Derivations

Words beginning with "parameter": parameterization, parameterizations, parameterize, parameterized, parameterizes, parameterizing, parameters. (additional references)

Words ending with "parameter": multiparameter. (additional references)


Misspellings

"Parameter" is suggested in spellcheckers for the following: barameter, Paramat, paramater, Paramatta, paramenter, Parameta, parametre, paramiter, paramitter, parapeted, paremeter, parmameter, Parmentier, parmeter, perameter, perametter, peremeter, Pergamene, periameter, permeter, permster, Porometer. (additional references)

Source: compiled by the editor, based on several corpora (additional references).

Top     

Rhyming with "Parameter"

# of Phoneme MatchesPronunciationWord(s) rhyming with "parameter" (pronounced pera"muter)
5-a" m u t erdiameter.
4-m u t eraccelerometer, altimeter, anemometer, barometer, densitometer, estimator, fluorometer, goniometer, hydrometer, hygrometer, interferometer, kilometer, magnetometer, micrometer, odometer, perimeter, photometer, polarimeter, spectrometer, speedometer, tensiometer, thermometer.
3-u t erAmphitheater, arbiter, auditor, capacitor, catheter, comparator, competitor, conservator, conspirator, contributor, creditor, depositor, distributor, editor, elater, executor, exhibitor, inheritor, inhibitor, inquisitor, interlocutor, interpreter, janitor, marketer, monitor, orator, orbiter, picketer, predator, progenitor, proprietor, quieter, rioter, Sen, senator, sequitur, solicitor, telemarketer, Theater, theatre, trumpeter, visitor.

Source: compiled by the editor (additional references); see credits.

Top     

Anagrams: Parameter

Scrabble® Enable2K-Verified Anagrams

Words within the letters "a-a-e-e-m-p-r-r-t"

-1 letter: tamperer.

-2 letters: amreeta, pearter, preterm, rampart, taperer, tempera, tramper.

-3 letters: aerate, ampere, errata, metepa, perter, prater, prearm, ramate, reamer, reaper, remate, repeat, retape, reteam, retear, tamper, tearer, temper, termer, terrae.

-4 letters: ameer, apart, apter, areae, arete, armer, armet, eater, etape, mater, merer, meter, metre, parae, parer, pater, peart, perea, peter, praam, prate, ramee, ramet, raper, rater, rearm, reata, remap, remet, retem, tamer, taper, tarre, terra, tramp.

-5 letters: aper, area, atap, atma, maar, mare, mart, mate, meat, meet, mere, meta, mete, para, pare, parr, part, pate, pear, peat, peer, perm, pert, pram, prat, pree, ramp, rape, rapt, rare, rate, ream, reap, rear, rete, tame, tamp, tapa, tape, tare, tarp, team, tear, teem, temp, tepa, term, tram, trap, tree.

 Words containing the letters "a-a-e-e-m-p-r-r-t"
 

+1 letter: parameters.

 

+2 letters: parametrize.

 

+3 letters: parameterize, parametrized, parametrizes.

 

+4 letters: parameterized, parameterizes.

 

+5 letters: aromatherapies, epigrammatizer, metallographer, multiparameter, parameterizing, prearrangement, premanufacture.

Source: compiled by the editor from various references; see credits.

SCRABBLE® is a registered trademark. All intellectual property rights in and to the game are owned in the U.S.A and Canada by Hasbro Inc., and throughout the rest of the world by J.W. Spear & Sons Limited of Maidenhead, Berkshire, England, a subsidiary of Mattel Inc. Mattel and Spear are not affiliated with Hasbro.

Top     

Alternative Orthography: Parameter


Hexadecimal (or equivalents, 770AD-1900s) (references)

50 61 72 61 6D 65 74 65 72

Leonardo da Vinci (1452-1519; backwards) (references)

American Sign Language (origins from 1620-1817 in Italy and, especially, France) (references)

=

Semaphore (1791, in France) (references)

Braille (1829, in France) (references)

Morse Code (1836) (references)

.--.    .-    .-.    .-    --    .    -    .    .-.

Dancing Men (Sir Arthur Conan Doyle, 1903) (references)

Binary Code (1918-1938, probably earlier) (references)

01010000 01100001 01110010 01100001 01101101 01100101 01110100 01100101 01110010

HTML Code (1990) (references)

&#80 &#97 &#114 &#97 &#109 &#101 &#116 &#101 &#114

ISO 10646 (1991-1993) (references)

0050 0061 0072 0061 006D 0065 0074 0065 0072

British Sign Language (Fingerspelling, BSL; 1992, British Deaf Association Dictionary of British Sign Language) (references)

Encryption (beginner's substitution cypher): (references)

506784677971867184

Top     

 

INDEX

1. Definition
2. Synonyms
3. Crosswords
4. Usage: Commercial
5. Quotations: Non-fiction
6. Usage Frequency
7. Expressions
8. Expressions: Internet
9. Translations: Modern
10. Translations: Ancient
11. Derivations
12. Rhymes
13. Anagrams
14. Orthography
15. Bibliography


  

Copyright © Philip M. Parker, INSEAD. Terms of Use.