08-03-2017 07:05 AM
Hello,
I currently have an XY graph plotting data from my LIDAR, which is just an array of complex numbers (i.e magnitude and direction). This is shown below.
As you can probably see from the image; my VI also detects corners, which in this case is around 500mm in front of the LIDAR and 22mm across. What I am hoping to do is to somehow plot a dot or a cross or something at the CornerX and CornerY position, something like the picture below.
Is there an easy way to do this? Any help would be greatly appreciated.
Solved! Go to Solution.
08-03-2017 07:23 AM
Yes. You can plot multiple "plots" on an XY Graph. A "feature" of XY plots is that all of the plots must have the same number of data points. Here's what you can do:
Try it, and if it works, come back here and mark this response as a Solution.
Bob Schor
08-03-2017 07:31 AM
This should do it. Make sure to adjust the plot style for plot 1 to have dots and no lines.
08-03-2017 07:32 AM
@Bob_Schor wrote:
A "feature" of XY plots is that all of the plots must have the same number of data points.
I don't think this is correct, that is why you need to have array of cluster of arrays, rather than just a 2D array.
08-03-2017 07:46 AM
Thanks, that's exactly what I was after