LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to create a matrix with constant values and multiply it with the output of adc

How to create a matrix with constant values and multiply it with the output of adc 

0 Kudos
Message 1 of 4
(3,708 Views)

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.

0 Kudos
Message 2 of 4
(3,690 Views)

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

Message 3 of 4
(3,684 Views)

@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

G# - Award winning reference based OOP for LV, for free! - Qestit VIPM GitHub

Qestit Systems
Certified-LabVIEW-Developer
0 Kudos
Message 4 of 4
(3,670 Views)