Tagged Questions
1
vote
1answer
39 views
creating 4D lookup table
I need to create fast 4D lookup table according to the following:
1- it will receive 4 input variables (u,v,i,j) each one range from 0 to 15
2- the lookup table returns a precalculated value of 8 bit
...
0
votes
1answer
27 views
How to do a double array enum lookup
I've declared an enum of id and description and double array for coordinates.
public enum Location {
GRASS(0, "Green Grass"),
CHURCH(1, "A church");
private int locationId;
public ...
1
vote
2answers
69 views
Make a lookup on an array literal in PHP
Making a lookup on an array is simple:
$array = array(0 => 'Zero', 1 => 'One', 2 => 'Two');
$text = $array[2]; // $text = 'Two'
But if I don't want the intermediate $array variable, is ...
1
vote
1answer
115 views
Bash: DNS lookup, put NS in array
I need to lookup the NS for a couple of domains and I need to put the results in an array.
Right now I have only manage to get the first result to echo but I need all the results, preferably in an ...
0
votes
2answers
48 views
Save Datatable in text and looking up later
I have a homework to do with C#, To calculate some thing, save in the database (or text file) and looking up later. Here is my code. I tried but it seem not working. Can anyone help me to check it? ...
0
votes
1answer
67 views
Getting Excel to return a row which has two values
I have a csv file that has all the fixtures of a football League between 2003 and 2012 (this is in Sheet1). I want Excel to return the row containing certain fixtures to my worksheet, i.e. when team A ...
1
vote
3answers
159 views
Use a hashtable or array as bitmap when checking for characters
Say I want to have some kind of a bitmap to know the number of times a particular char appears in a string.
So, for example, if I read the string "abracadabra", I would have a data structure that ...
1
vote
1answer
154 views
Returning value from data array based on several conditions
I have a data table with 3 columns (the look is simplified for clarity, but arrangements and data formats are preserved, 1st column A is Date formatted with my regional settings, but it is NOT text):
...
2
votes
1answer
152 views
How to check if an element exists in a Python array (Equivalent of PHP in_array)?
I'm new to Python and I'm looking for a standard function that would tell me if an element is present in an array. I found the index method but it throws an exception if the element is not found. I ...
3
votes
1answer
353 views
Conditional SUM using multiple tables in EXCEL
I have a table that I'm trying to populate based on the values of two reference tables.
I have various different projects 'Type 1', 'Type 2' etc. that each run for 4 months and cost different amounts ...
1
vote
2answers
439 views
Using a small lookup table in a GLSL shader
I have a fragment shader and I would like to build a small loookup table and interpolate on it. My current code is this (sorry for the verbosity):
float inverse_f(float r)
{
// Build a lookup ...
3
votes
1answer
282 views
Building a “sparse” lookup array minimizing memory footprint
let's say I want to build an array to perform a lookup to parse network protocols (like an ethertype). Since such an identifier is 2-byte long, I would end up with a 2^16 cells array if I use direct ...
0
votes
1answer
936 views
Find value between array values
I have a large array and would like to find between which array values the search value would appear.
A simplified version of this array is as follows:
[0] => Array
(
[min] => 0
...
1
vote
4answers
134 views
Efficient way of Element lookup in a Python List?
I have a list of files in a directory. I have to process only certain files from that directory. filelist is my desired file-list. How do I go about achieving this? Not interested in a bash solution ...
0
votes
2answers
482 views
Using Array.BinarySearch() to return first value <= lookup value?
I'm trying to create a "lookup" column that would return the index of the array value that is equal to or less than the value being looked up. So this is my attempt, which seems to work fine, but I ...
5
votes
12answers
1k views
Optimizing for speed - 4 dimensional array lookup in C
I have a fitness function that is scoring the values on an int array based on data that lies on a 4D array. The profiler says this function is using 80% of CPU time (it needs to be called several ...
0
votes
4answers
377 views
list? dictionary? array?
i'm trying to come up with a very simple way to store a boolean value for each tabpage in a tabcontrol. each page has a textbox, and i would like to store a bool foreach page so if tabpage 1 has been ...
0
votes
1answer
794 views
How to put std::dec/hex/oct into a look-up array
I have this generic string to number conversion :
enum STRING_BASE : signed int {
BINARY = -1,
OCTAL = 0,
DECIMAL = 1,
HEX = 2,
};
template <class Class>
static bool ...
