LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to implement multiple overlapping

Hi all:
 
I want to implement overlapping waveform, that means when second waveform is drawed, the first one is not disappear. Now the problem that I meet is how to implement multiple overlapping waveform
for example: 1000 waveform overlapping.
 
In the first example that I attached below, I could get signal overlapping by building a n-dimension array.
However, In the second example below, I don't know how to implement overlapping based DBL.  (how can I build a n-dimension array)
 
 
Besides,  building a n-dimension is a good idea about it?  is there any other ways to implement it.
 
 
 
Best regards
 
 
 
Download All
0 Kudos
Message 1 of 2
(2,708 Views)

If you are not already doing so, you should always work with Context Help turned on. With it on and when you move your mouse over the graph terminal on the block diagram, you will see the help window shown below. As it state (and as the shipping examples demonstrate), a multiplot graph is a 2D array. One way to achieve that is with the code shown below. With your methode, you are updating a graph one point ata time and that is not efficient (especiall with your insert into array and replace array subset functions). If you want to update one point at a time, you should be using a chart.



Message Edited by Dennis Knutson on 02-20-2008 03:43 PM



Message Edited by Dennis Knutson on 02-20-2008 03:45 PM
Download All
0 Kudos
Message 2 of 2
(2,700 Views)