slovodefinícia
lexical
(mass)
lexical
- slovný
lexical
(encz)
lexical,lexikální adj: Zdeněk Brož
lexical
(encz)
lexical,slovní adj: Zdeněk Brož
lexical
(encz)
lexical,slovníkový adj: Zdeněk Brož
lexical
(gcide)
lexical \lex"ic*al\ (l[e^]ks"[i^]*kal), a.
Of or pertaining to a lexicon, to lexicography, or words;
according or conforming to a lexicon. -- Lex"ic*al*ly, adv.
[1913 Webster]
lexical
(wn)
lexical
adj 1: of or relating to words; "lexical decision task"
2: of or relating to dictionaries
podobné slovodefinícia
lexical ambiguity
(encz)
lexical ambiguity, n:
lexical database
(encz)
lexical database, n:
lexical disambiguation
(encz)
lexical disambiguation, n:
lexical entry
(encz)
lexical entry, n:
lexical meaning
(encz)
lexical meaning, n:
lexicalisation
(encz)
lexicalisation, n:
lexicalise
(encz)
lexicalise, v:
lexicalised
(encz)
lexicalised, adj:
lexicalization
(encz)
lexicalization,lexikalizace n: Zdeněk Brož
lexicalize
(encz)
lexicalize,lexikalizovat v: Zdeněk Brož
lexicalized
(encz)
lexicalized, adj:
lexicalized concept
(encz)
lexicalized concept, n:
lexically
(encz)
lexically,lexikálně adv: Zdeněk Brožlexically,slovně adv: Zdeněk Brož
nonlexical
(encz)
nonlexical, adj:
nonlexically
(encz)
nonlexically, adv:
lexicalize
(gcide)
lexicalize \lex"i*cal*ize\ (l[e^]ks"[i^]*kal*[imac]z), v. t.
1. To make into a word, coin into a word; as, The concept
expressed by German "Gemuetlichkeit" is not lexicalized in
English.
[WordNet 1.5]

2. To increase the importance of, or emphasis on, words as
opposed to other parts of a theory or program; -- said of
grammatical theories and computer programs, especially
programs for understanding language; as, lexicalized
tree-adjoining grammar.
[PJC]
Lexically
(gcide)
lexical \lex"ic*al\ (l[e^]ks"[i^]*kal), a.
Of or pertaining to a lexicon, to lexicography, or words;
according or conforming to a lexicon. -- Lex"ic*al*ly, adv.
[1913 Webster]
nonlexical
(gcide)
nonlexical \nonlexical\ adj. (Grammar)
Not lexical; as, nonlexical morphemes.
[WordNet 1.5]
lexical ambiguity
(wn)
lexical ambiguity
n 1: the ambiguity of an individual word or phrase that can be
used (in different contexts) to express two or more
different meanings [syn: polysemy, lexical ambiguity]
[ant: monosemy]
lexical database
(wn)
lexical database
n 1: a database of information about words
lexical disambiguation
(wn)
lexical disambiguation
n 1: disambiguation of the sense of a polysemantic word
lexical entry
(wn)
lexical entry
n 1: the entry in a dictionary of information about a word [syn:
lexical entry, dictionary entry]
lexical meaning
(wn)
lexical meaning
n 1: the meaning of a content word that depends on the
nonlinguistic concepts it is used to express
lexical semantics
(wn)
lexical semantics
n 1: the branch of semantics that studies the meanings and
relations of words
lexicalisation
(wn)
lexicalisation
n 1: the process of making a word to express a concept [syn:
lexicalization, lexicalisation]
lexicalise
(wn)
lexicalise
v 1: make or coin into a word or accept a new word into the
lexicon of a language; "The concept expressed by German
`Gemuetlichkeit' is not lexicalized in English" [syn:
lexicalize, lexicalise]
lexicalised
(wn)
lexicalised
adj 1: expressed by a word [syn: lexicalized, lexicalised]
lexicalization
(wn)
lexicalization
n 1: the process of making a word to express a concept [syn:
lexicalization, lexicalisation]
lexicalize
(wn)
lexicalize
v 1: make or coin into a word or accept a new word into the
lexicon of a language; "The concept expressed by German
`Gemuetlichkeit' is not lexicalized in English" [syn:
lexicalize, lexicalise]
lexicalized
(wn)
lexicalized
adj 1: expressed by a word [syn: lexicalized, lexicalised]
lexicalized concept
(wn)
lexicalized concept
n 1: a concept that is expressed by a word (in some particular
language)
lexically
(wn)
lexically
adv 1: by means of words; "lexically represented"
nonlexical
(wn)
nonlexical
adj 1: not relating to words; "nonlexical morphemes"
nonlexically
(wn)
nonlexically
adv 1: without the use of words; "expressed nonlexically"
consortium for lexical research
(foldoc)
Consortium for Lexical Research
CLR

(CLR) A repository for natural language processing
software, lexical data, tools and resources; set up in July 1991
in the Computing Research Laboratory of {New Mexico State
University}, Las Cruces, New Mexico, USA.

CLR maintained a public FTP archive site and a separate
members-only library. As of 1994-02-01, CLR had about 60 members,
mostly academic institutions, including most US natural language
processing centres. Materials could be contributed in exchange
for membership.

In 2006, the CRL closed down due to lack of funding. The CLR
FTP server and e-mail address seems to have disappeared with it.

[{The Consortium for Lexical Research, Y. Wilks, Principal
Investigator, Computing Research Laboratory, New Mexico State
University
(http://clair.eecs.umich.edu/aan/paper.php?paper_id=H92-1114)}].

(2014-07-06)
lexical analyser
(foldoc)
lexical analyser
lexer

(Or "scanner") The initial input stage of a
language processor (e.g. a compiler), the part that performs
lexical analysis.

(1995-04-05)
lexical analysis
(foldoc)
lexical analysis

(Or "linear analysis", "scanning") The first
stage of processing a language. The stream of characters
making up the source program or other input is read one at a
time and grouped into lexemes (or "tokens") - word-like
pieces such as keywords, identifiers, literals and
punctuation. The lexemes are then passed to the parser.

["Compilers - Principles, Techniques and Tools", by Alfred
V. Aho, Ravi Sethi and Jeffrey D. Ullman, pp. 4-5]

(1995-04-05)
lexical scope
(foldoc)
lexical scope
lexical scoping
static scope

(Or "static scope") When the scope of an
identifier is fixed at compile time to some region in the
source code containing the identifier's declaration. This
means that an identifier is only accessible within that region
(including procedures declared within it).

This contrasts with dynamic scope where the scope depends on
the nesting of procedure and function calls at run time.

Statically scoped languages differ as to whether the scope is
limited to the smallest block (including begin/end blocks)
containing the identifier's declaration (e.g. C, Perl) or
to whole function and procedure bodies (e.g. ECMAScript), or
some larger unit of code (e.g. ?). The former is known as
static nested scope.

(2005-07-28)
lexical scoping
(foldoc)
lexical scope
lexical scoping
static scope

(Or "static scope") When the scope of an
identifier is fixed at compile time to some region in the
source code containing the identifier's declaration. This
means that an identifier is only accessible within that region
(including procedures declared within it).

This contrasts with dynamic scope where the scope depends on
the nesting of procedure and function calls at run time.

Statically scoped languages differ as to whether the scope is
limited to the smallest block (including begin/end blocks)
containing the identifier's declaration (e.g. C, Perl) or
to whole function and procedure bodies (e.g. ECMAScript), or
some larger unit of code (e.g. ?). The former is known as
static nested scope.

(2005-07-28)

Nenašli ste slovo čo ste hľadali ? Doplňte ho do slovníka.

na vytvorenie tejto webstránky bol pužitý dictd server s dátami z sk-spell.sk.cx a z iných voľne dostupných dictd databáz. Ak máte klienta na dictd protokol (napríklad kdict), použite zdroj slovnik.iz.sk a port 2628.

online slovník, sk-spell - slovníkové dáta, IZ Bratislava, Malé Karpaty - turistika, Michal Páleník, správy, údaje o okresoch V4