Questions tagged [labview]

LabVIEW stands for Laboratory Virtual Instrumentation Engineering Workbench and is a graphical programming system by National Instruments. The programming language is called G but often referred to as just LabVIEW.

LabVIEW is a graphical development environment offered as proprietary software by National Instruments and complementing their industrial controllers and data acquisition systems used in research labs and elsewhere.

The programming language itself is called G but usually referred to as just LabVIEW. The programming language is a parallel, dataflow, graphical, type-safe language. Dataflow provides automatic memory allocation/deallocation without the overhead of garbage collection. The language includes hooks to call into native C, .NET, COM, etc.

A LabView application is represented by a so-called "virtual instrument" or VI. A VI is divided into two parts: the front panel and the block diagram. The front panel acts as the GUI and defines the user interface where all the visual elements ("controls") are drawn and placed. Front panel controls include buttons, switches, knobs, and so on. Output elements like graphs, thermometers, and text boxes are also placed on the front panel.

The block diagram contains the execution code. LabVIEW code follows a dataflow-based execution paradigm. Functions are represented as individual blocks on the block diagram, with each function having zero or more inputs and one or more outputs. The dataflow programming paradigm dictates that a block (function) cannot execute until it has received data on all of its inputs, and a block outputs data on all of its outputs simultaneously once it has executed. Each block is, from the perspective of the block diagram in which it resides, atomic. Wiring determine execution order between blocks, and sections of a block diagram that share no connections can run completely in parallel.

To include LabVIEW code in your question, consider using a VI Snippet so that others can view, run and edit your code.

You can read more on the LabVIEW wiki or on the official National Instruments website.

1408 questions
-1
votes
1 answer

convert ffrom 16.0 version vi into 15.0 vi labview vi

please help me to convert 16.0 vi into 15.0 version vi. coulnt possible to open 16 version in 15 labview please help me with this .Thanks in advance.
-1
votes
1 answer

Image processing LabVIEW and myrio

i want a good tutorial or courses to start learning image processing in LabVIEW using myrio and Vision Assistant To detect a object and send the end effector of the delta robot to it
-1
votes
1 answer

creating executables from labview for Linux based platofrm

can we create executables for beaglebone black micrcontroller which is a linux based platform having arm processor using labview?If yes,How?
TANI
  • 1
  • 4
-1
votes
2 answers

can't open non english .vi files (lv2013)

Is there any way to open xyz.vi ( xyz = non English) files? that is what happen when i am trying to open my main.vi file - it searches the non English .vi although they are in the same folder: pic
yu val
  • 41
  • 1
  • 1
  • 4
-1
votes
2 answers

LabVIEW: Updating a value in a while loop

I am currently making a vi, which continuously monitors a temperature using a thermistor and using a DAQ board and a transistor to turn on and off a USB fan depending on the temperature. I want the vi to turn on the fan once the temperature exceeds…
Skipher
  • 205
  • 4
  • 13
-1
votes
1 answer

Plotting a spreadsheet in LabVIEW

i am having troubles in plotting an XY graphic in LabVEW. I know that we have a VI that can plot XY graphs, however i want to plot the graph of an excel table that was saved as TXT file. For this, i tried to use Read From Spreadsheet VI, with this…
-1
votes
1 answer

OpenCV MatIterator error

I have actually a problem with the Iterator in OpenCV. I am reading from LabView an Image and store this in a Mat imgIn. Afterwards I create a second Mat for image proccesing things Mat imOut. When I clone this and try to send it back to LabView, I…
Xeno1987
  • 9
  • 1
  • 6
-1
votes
2 answers

How to copy value in Numeric Indicator to Numeric Control in LabVIEW program?

How to copy value from numeric indicator to Numeric control in Laview program? That is Numerical Control should use the value that is displayed in the indicator.
saleem
  • 11
  • 1
  • 6
-1
votes
1 answer

Guidance with labview webservice

I have a VI which reads data from a IMU unit and displays data via a graph. I want to do a web app version of it with javascript. Would I have to extend the same VI as a new copy under web services to perform control from the browser or use a shared…
user3763570
  • 157
  • 1
  • 9
-1
votes
2 answers

LabVIEW Programming for running the machine continuously

I want to run my Robot in 3 -axes(X,Y,Z) continuously with different values of x, y, z. Suppose i want the machine to run 100 times. Each time the values of the x, y, z will be different and each time it will take the values from a table…
-1
votes
1 answer

Serial Communation(RS232) Software for SR830 Labiew

The driver Software provided in NI webpage for SR830 is for GPIB.I am looking for a driver Software for RS232 communication. Can someone please share it here!!!
vsk309
  • 1
-1
votes
1 answer

Increment an output signal in labview

![enter image description here][1]I have a high voltage control VI and I'd like it to increase the output voltage by a user set increment every x number of seconds. At the moment I have a timed sequence outside the main while loop but it never…
-1
votes
1 answer

How to send file to FTP server using LabVIEW

I have to send file to ftp server every time, when the file is upgraded by LabVIEW. I found LabVIEW function 'FTP Put File VI', but the file cannot be sent to server, which has the password. I wouldn't like to use any scripts or external program, if…
Sarkel
  • 3
  • 1
  • 2
-1
votes
1 answer

Access to LStrHandle in the DLL

i am doing new study about LabVIEW and DLL. I created a DLL which built by LabVIEW. This is a header file. #include "extcode.h" #pragma pack(push) #pragma pack(1) #ifdef __cplusplus extern "C" { #endif typedef struct { int32_t numeric_input; …
labRubys
  • 21
  • 1
  • 7
-1
votes
1 answer

calculating tilting angle using labview, cdaq and imu

i would like to ask how to calculate tilting angle accurately using IMU unit SN-IMU5D-LC http://www.cytron.com.my/viewProduct.php?pcode=SN-IMU5D-LC and cDAQ 9188 and labview how to implement kalman filter or complementary thanks