08-05-2013 10:41 AM
How to create a matrix with constant values and multiply it with the output of adc
08-05-2013 01:12 PM
Gain-only correction lookup table? Not as common as offset-only. Start with all zeros, run it through an entire sweep of a DC calibrator and capture expected vs. actual counts. Change the quotient to a constant and replace the zeros.
08-05-2013 01:26 PM
Note that you are probably talking about a LabVIEW Array not a Matrix. In LV an array is a group of elements (data) and is arranged in one or more dimensions. Your reference to a matrix implies that you are talking about a 2D array. The Matrix data type is a specialized 2D array of double-precision real or complex numbers to be used in certain linear algebra functions. You only need the matrix datatype if you will be using those functions which specify a matrix input.
Lynn
08-06-2013 01:33 AM
@nitinkajay wrote:
How to create a matrix with constant values and multiply it with the output of adc
Place array constant on diagram, drag a double to it, r-click "add dimension". There, a constant 2D double array, a matrix.
/Y