A look-up table is an array or matrix of data that contains items that can be searched. Lookup tables may be arranged as key-value pairs, where the keys are the data items being searched (looked up) and the values are either the actual data or pointers to where the data are located.
1
vote
1answer
21 views
Integrate junction and lookup tables with a basic Access database
I have a simple database that stores a customer's name, city and state. I've added to this two new tables. One is a lookup table, for describing a car model, and the second is a junction table for ...
0
votes
1answer
18 views
Excel: Agregate multiple tables separated by title
I have an excel file generated by SAP. I need change its format from multiple tables separated by a title to one single table. This is the original table:
and i need it to look like this:
Im new ...
0
votes
1answer
51 views
How to adjust brightness of an image in c# using something like 'Look up table' in java? [closed]
I'd like to know how to adjust brightness of an image in c# using something similar to 'Look up table' in java. I don't want to use GetPixel and SetPixel methods for every pixel in my image.
Look up ...
0
votes
3answers
60 views
C data structure for looking up 6-byte structure using ascii values passed
I need a compact data structure for an embedded system in C. Given a byte representing an ascii code, a function will return a 6-byte bitmap for that font's character. Only a few characters' bitmaps ...
1
vote
1answer
53 views
Look-up vs relationship Microsoft Access
I'm developing a Microsoft Access 2013 based information system.
One of the demand of the client was is to simplify data entering process by using combobox with available values.
For example, instead ...
0
votes
1answer
55 views
Stack overflow in Pic16F684 Microcontroller when using Lookup tables
My task was to develop a program which will blink LEDs from D7 to D0.
I have develop solution which blinks them once and then have a stack overflow.
I am suspicious on lookup tables becouse previosly ...
1
vote
1answer
29 views
Associating serial data to a table
I have a serial connection that acquires data from a micro connected to a J thermocouple. The microprocessor sends a numeric value from 0 to 1023 proportional to the measured millivolts.
The data from ...
0
votes
0answers
22 views
Rails 3 create seed data for lookup tables in test environment
I am working with Rspec, FactoryGirl, and Capybara for my testing in my rails application. In my application when i create what i call a Release (that is the model name as well) the application uses ...
0
votes
1answer
35 views
JPA - Generic Master lookup table mapping
I'm trying to map a generic lookup table. The lookup table is generic in the sense that instead of having multiple master tables for specific lookups, all the codes are hosted in a single table with a ...
0
votes
1answer
63 views
SQL lookup table
My query is:
select
C.GradePoint, D.Domain
from
(select
A.course_code, B.course_title, A.GradePoint
from
(select
course_code, GradePoint
from ...
1
vote
3answers
88 views
Smart way to implement lookup in high-perf FORTRAN code
I'm writing a simulation in FORTRAN 77, in which I need to get a parameter value from some experimental data. The data comes from an internet database, so I have downloaded it in advance, but there is ...
0
votes
0answers
17 views
A comprehensive list of possible names
I'm looking to compile a list of all possible surnames to write some software that can automatically recognise when a person is mentioned in a piece of text. So far, I have seen this post:
Raw list ...
1
vote
1answer
224 views
AngularJS retrieve from object based on entry in ng-repeat input
This application is for running a writing contest.
Coodinators are assigning entries to judges for them to judge. I have three sets of data I retrieve from the server, a judge list, an entries list ...
0
votes
1answer
35 views
How to create a LookUpTable[LUT] PNG file?
I want to load a color lookup table as a Sampler2D in the fragment shader, and how to create such a png file like below?
Help me, please.
0
votes
1answer
127 views
lookup table vs runtime computation efficiency - C++
I'm writing a code that continuously requires to compute a value from a particular function.
After some profiling, I discovered that this part of my program is where most of the time is spent.
So, ...
0
votes
1answer
46 views
HATBM, how to write into lookup table and only into one of the associated tables, not in both?
The question is: given two models A and B being in HABTM association, when I create new instance of A, how to instruct Rails not to write to A, B and A_B, but just to A and A_B?
So, more precisely: I ...
0
votes
0answers
44 views
NHibernate lookup value
I'm trying to setup a mapping between and object and it's lookup value in another object. Here's are my tables:
Orders:
OrderId int,
OrderDate datetime,
StatusId int
Statuses:
id int
...
2
votes
3answers
227 views
Fast, in-memory range lookup against +5M record table
I have a database table with +5M static records in place. Simple structure: (starting int, ending int, result int). So i have an certain INT and i need to find it's corresponding result(int). ...
1
vote
1answer
32 views
PostgreSQL: Which datatype is better to use for this situation?
I am building a database which will be used to define and keep track of a document used inside my organization. Each of these documents has a category associated with it. Will it be more efficient to ...
0
votes
2answers
217 views
Lookup Tables in Java?
In my Computer Science course, we're learning about Lookup Tables. But our teacher did not provide any examples in the lesson pages he has posted, nor the videos he provided. All he did was tell us ...
5
votes
1answer
172 views
algorithm behind the generation of the reverse bits lookup table(8 bit)
I found the lookup table here. The table is generated as a reverse bits table of 8 bits.
I can not figure out why it works. Please explain the theory behind it. Thanks
static const unsigned char ...
0
votes
2answers
75 views
Return city and state based on zip code
I would like "city" and "state" to appear on screen based on what "zip code" user has typed into a text box. I have a 3 column text file of the zip, city and state. What is the most efficient way to ...
0
votes
3answers
80 views
Reference to Lookup Entities without Adding New One
I have 2 EF Entities:
public partial class CustomerEntity
{
public int CustomerId { get; set; }
public string CustomerName { get; set; }
public virtual ICollection<RoleEntity> Roles ...
3
votes
1answer
508 views
How to convert cell vlookup to VBA
Currently, I am having a formula in my cell:
=IFERROR(VLOOKUP(A:A,'Daily Report'!A:Z,2,FALSE),"")
=IFERROR(VLOOKUP(A:A,'Daily Report'!A:Y,7,FALSE)&", "&VLOOKUP(A:A,'Daily ...
-1
votes
2answers
85 views
How to optimze lookup table?
I am developing a TSQL query using SSMS 2008 R2 and I want to optimize this sproc that currently uses many left joins. There is a lookup table that contains one row / lookup value. So my TSQL code ...
1
vote
1answer
102 views
Excel lookup data and find top 3 items
I can't figure out which formulas I can use for the following issue:
How can I look up the top three items from the list with Occurrence?
6
votes
1answer
101 views
Type casting error with numpy.take
I have a look-up table (LUT) that stores 65536 uint8 values:
lut = np.random.randint(256, size=(65536,)).astype('uint8')
I want to use this LUT to convert the values in an array of uint16s:
arr = ...
1
vote
0answers
135 views
How to create a lookup table in python when the dependent parameter value depends on multiple variables
I have a database like the following, in which the value of the parameter 'b' depends on the values of multiple other parameters, viz. a(1), a(2) ... a(n):
a(1),a(2),a(3),...,a(n) : b
and multiple ...
0
votes
0answers
17 views
mininal database
i have lots of file for a graph building, each file contains lines of edges like this:
item1 user1
item2 user34
item54 user22
...
then need to translate that tags to their number ...
1
vote
1answer
54 views
On-disk lookup table with node.js bindings
For a project I am creating a queuing library and basically store URLs in a Set (it's actually an object, where I set keys to true, but one can see it as an array), so the queue only takes every url ...
0
votes
1answer
204 views
LUT Android Shader
I need to pass LUT from Android application to the fragment shader for color correction. I've found some examples where LUT is passed as Bitmap
GLES20.glBindTexture(GLES20.GL_TEXTURE_CUBE_MAP, name);
...
1
vote
2answers
71 views
intern work of char - better/equal to lookup [closed]
i tried the following:
int main()
{
char* a = "sdwgfwegwe wefwef wefwefwefwysadqaw";
char* b = "acd";
char* c = "sdwgfwegwe wefwef wefwefwefwysadqaw";
char* d;
d = "acd";
...
4
votes
2answers
136 views
Is there a convenient way to apply a lookup table to a large array in numpy?
I’ve got an image read into numpy with quite a few pixels in my resulting array.
I calculated a lookup table with 256 values. Now I want to do the following:
for i in image.rows:
for j in ...
2
votes
1answer
152 views
Are integers faster than strings as keys for lookup tables in Javascript?
My data returned from the backend contains a lot of referential data and I need to access it efficiently, so I'm thinking about creating (object's id) => (object itself) type lookups. The IDs for ...
1
vote
1answer
133 views
Counting the number of set bits in an integer?
I'm trying to use the x*x-1 to check to see if the integer is a power of 2 and then count it.
long count_bits(long n) {
unsigned int c;
for c = 0:n
n = n * (n - 1); %Determines if an integer is a ...
0
votes
0answers
137 views
Database Design - Lookup Table Normalization
I have several lookup tables which I need to create. These tables will have an id and name.
Here is my question. These lookup tables will be cross joined to arrive at the main data table. Many of ...
0
votes
1answer
123 views
World currencies lookup table - with ISO 3166-1 alpha-2 codes?
Where to get a database of world currencies?
It should contain the country along with the currency used in that currency.
i.e "CountryCode, CurrencyCode"
Example
US, USD
UK, GBP
AU, AUD
NZ, NZD
...
-2
votes
1answer
63 views
World Currencies Lookup table [closed]
Where to get a database of world currencies?
It should contain the country along with the currency used in that currency.
i.e "CountryCode, CurrencyCode"
0
votes
1answer
107 views
Using a 2d array as a lookup table vs. calculating click
I have a canvas with a width of 1000 and a height of 600. Within this canvas I have 300-500 rectangle tiles each with their own id. I can detect mouse coordinates within the canvas but I have to ...
0
votes
0answers
124 views
jQuery - Find Next Number in Previous Row of Look-up Table
This is a follow-up question to the one answered here - jQuery - Find Value Based on Input and Lookup Table.
That solution worked perfectly. There's one outstanding issue though.
The look-up table ...
0
votes
1answer
61 views
trim from a string the data in lookup table
I am having a Dirty database and i have to clean it, by first extracting city name from the address (which is written with several variation) and then standardize spelling the city name and replace ...
1
vote
1answer
75 views
Find value of dict1 key1 when given dict1 key2?
I want to get the value from the key 'haz' of the dictionary whose 'foo' has value closest to 'barn'.
Here is my inefficient solution:
data = [{'foo': 'bar', 'haz': 'bzr'}, {'foo': 'zoo', ...
1
vote
3answers
134 views
Replacing functions with Table Lookups
I've been watching this MSDN video with Brian Beckman and I'd like to better understand something he says:
Every imperitive programmer goes through this phase of learning that
functions can be ...
0
votes
1answer
214 views
jQuery - Find Value Based on Input and Lookup Table
I've a jQuery problem that I could use some help with. I'm trying to determine a value based on values in table.
Here's the scenario:
A category is selected. This determines the column to use. ...
1
vote
4answers
539 views
How to look up sine of different frequencies from a fixed sized lookup table?
I am sampling a sine wave at 48 KHz, the frequency range of my sine wave can vary from 0 to 20000 Hz with a step of about 100 Hz. I am using a lookup table approach. So I generate 4096 samples for a ...
3
votes
1answer
50 views
Table look-up on numeric data in PHP
I have a fairly large table (~5 MB csv file) stored on our server that consists of purely numeric data giving some result based on two parameters, e.g.
A B Output
-----------------------
1 ...
3
votes
1answer
191 views
Get specific value from look-up table?
This is the look-up class:
public class DistanceAngle
{
public int distance;
public int distanceAngle;
public int valueOfBoth;
public static void getDisatnceAngleLookup()
{
...
0
votes
1answer
425 views
SSIS Lookup multiple dates in my fact table, how to pull this off using one date dimension?
In my SSIS/DW project, I have a DIM.DATE dimension which is linked to my FACT table by a surrogate key as follows:
ALTER TABLE FACT.SALES ADD date_id INT NOT NULL
ALTER TABLE FACT.SALES WITH CHECK ...
0
votes
2answers
260 views
using boost::unordered_map as a look up table appears to be extremely slow
I have the following look up table defined:
boost::unordered_map<std::string, STFRandomTreeFunctor*> functor_look_up_table;
the idea is to use it to call the functor, however this appears to ...
2
votes
4answers
286 views
Algorithm optimization: Logarithm by calculation or lookup table
I am trying to optimize an audio-algoritm which has to calculate two algorithms like the following in every step. Now I've read, that there is no algorithm for logarithms that runs in polynomial time.
...
