06-22-2016 02:38 PM
Hi All,
I am trying to program a three dimensional stage (xyz stage). My quesiton has to do with programming a contour plot of the x-axis position (on the x-axis), y-axis position (on the y-axis), and have the current as the intensity. How do I need to do this?
06-22-2016 03:47 PM
There is 3D Line Graph in Graph -> 3D Graph palette. It requires X, Y, Z vectors of the same length of your points
06-23-2016 02:09 PM
Do you know how I would take data from the x-axis position counter loop and the y-axis position counter loop and plot it along with the current (which would be the z-axis)? I want to store all the data.
06-24-2016 08:50 AM - edited 06-24-2016 08:53 AM
You can accumulate arrays and show 3D curve in the end. To display in real-time you need to accumulate-replace-rotate data in array manually. Though may be your LabVIEW version already has 3D chart.
PS. X, Y and Z arrays should be the same length. On each iteration you have 1 X, 1 Y and multiple measurements, that you need to merge into 1 Z (average for example, whatever makes sense).
06-24-2016 10:16 AM
My labVIEW version already has a 3-D chart. How does this change the way I should process the data?