Hello LabVIEWers!
Currently I have an FPGA with 1D lookup table preset before each run.
Example: From a list of X values (acquired through the FPGA) look up the corresponding output Z (FPGA Voltage Out)
Now, I would like to extend the program to use lookup a value based on two (or more if possible) inputs.
Example: Form a given (X,Y,...) value, look up the corresponding output Z
In the CS world, I believe the best way to do this would be to take the given inputs, hash them and then create a 1D lookup table based on the hash.
Can this be done on the FPGA with LabVIEW? If so, is there a recommended high speed hashing function already developed.
Note:
Input values will be U16.
Input - output correlations are known before the FPGA starts.
A small combination of input values will have a specific output. Most will resolve to a default/null value.
I'd appreciate any solutions or other suggestions.