I need to find the "null vector" of the matrix in LabVIEW. But I couldn't find the related block. For example in MatLab, for the Matrix A we can simply find the null vector with the command: null(A); But in LabVIEW I can't do this till now. Could someone help me?
One easy way to do this is to use the MathScript node, which allows for many Matlab commands to be used in LabVIEW. Here's an example:
If you don't want to use the MathScript node, then you can get the result from the "Matrix V" output of "SVD decomposition" as shown in the second part of the code.