Lookup table - translation to spanish
DICLIB.COM
AI-based language tools
Enter a word or phrase in any language 👆
Language:     

Translation and analysis of words by artificial intelligence

On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:

  • how the word is used
  • frequency of use
  • it is used more often in oral or written speech
  • word translation options
  • usage examples (several phrases with translation)
  • etymology

Lookup table - translation to spanish

ARRAY DATA STRUCTURE THAT REPLACES RUNTIME COMPUTATION WITH A SIMPLER ARRAY INDEXING OPERATION
Look-up table; Look up table; Look-up; Lookup; VLOOKUP; Table (computing); Table lookup; XLOOKUP
  • Part of a 20th-century table of [[common logarithm]]s in the reference book [[Abramowitz and Stegun]].
  • right
  • Red (A), Green (B), Blue (C) 16-bit lookup table file sample. (Lines 14 to 65524 not shown)

Lookup table         
Tabla de búsqueda
pool table         
  • Billiard Table Manufactory, J. M. Brunswick & Bro., Proprietors, Cincinnati, Ohio, 1865 ad
  • A WEPF-style pool table, showing a cue ball and red and yellow balls close to the small, rounded, nearly parallel-sided pocket
  • cue ball}} and the 1 ball close to a WPA-style pocket. (The balls are the same size; the cue ball looks large due to [[foreshortening]].)
  • Snooker table, drawn to scale
SPECIAL TABLE USED EXCLUSIVELY FOR BILLIARDS OR SNOOKER
Pool table; Pocket (billiards); Pool tables; Snooker table; Billiards table; Billiards board; Billiard board; Billiards tables; Billiard tables; Snooker tables
Mesa de billar
billiard table         
  • Billiard Table Manufactory, J. M. Brunswick & Bro., Proprietors, Cincinnati, Ohio, 1865 ad
  • A WEPF-style pool table, showing a cue ball and red and yellow balls close to the small, rounded, nearly parallel-sided pocket
  • cue ball}} and the 1 ball close to a WPA-style pocket. (The balls are the same size; the cue ball looks large due to [[foreshortening]].)
  • Snooker table, drawn to scale
SPECIAL TABLE USED EXCLUSIVELY FOR BILLIARDS OR SNOOKER
Pool table; Pocket (billiards); Pool tables; Snooker table; Billiards table; Billiards board; Billiard board; Billiards tables; Billiard tables; Snooker tables
mesa de billar

Definition

lookup
¦ noun [usu. as modifier] systematic electronic information retrieval.

Wikipedia

Lookup table

In computer science, a lookup table (LUT) is an array that replaces runtime computation with a simpler array indexing operation. The savings in processing time can be significant, because retrieving a value from memory is often faster than carrying out an "expensive" computation or input/output operation. The tables may be precalculated and stored in static program storage, calculated (or "pre-fetched") as part of a program's initialization phase (memoization), or even stored in hardware in application-specific platforms. Lookup tables are also used extensively to validate input values by matching against a list of valid (or invalid) items in an array and, in some programming languages, may include pointer functions (or offsets to labels) to process the matching input. FPGAs also make extensive use of reconfigurable, hardware-implemented, lookup tables to provide programmable hardware functionality.