10-23-2005 04:45 PM
10-23-2005 07:55 PM
10-23-2005 08:01 PM
Hi
Sorry about that.
I have attached the relevant vi.
I am trying to get 4 individual graphs from the initial data coming from array.
Thank you.
10-23-2005 08:34 PM
10-23-2005 10:19 PM
10-23-2005 10:20 PM
10-23-2005 10:52 PM - edited 10-23-2005 10:52 PM
Well, you are already getting 4 plots, except for the cosmetic problem that all are padded with zeroes to the longest array. This is caused by the way you create the 2D array for the x-axis. The second autoindexing forces all rows to be the same lenght. (In a 2D array, all colums have the same lenght and all rows have the same lenght).
If you don't want this, you could place each 1D array inside a cluster, then unbundle it in the second loop. Now each 1D array can have different lenght. (example I)
Even easier, you can place the small loop inside the second loop (example II)
There are many other ways to do this.
Message Edited by altenbach on 10-23-2005 08:54 PM
10-23-2005 11:20 PM