Hello!
I'm trying to display a measured resistance with a boxplot. For that i modified a boxplot.vi I found in these forums. I want to be able to change "time measured in minutes" and "measurements per minute", which means i got an array of variable size. Each loop-iteration (of the loop fetching the data from my measurement device) adds one row and each row is displayed as one box in the plot.
Problem is that i have to manually add every row by indexing it in the array and building it into the array that's wired to the xy graph. As far as i know there is no way of increasing the size of "build array" programmatically and a loop won't work since only the data of the newest iteration will be available.
I can use the maximum number of boxplots thats likly to be used and just display as many as needed, but that isnt very efficient or good programming style at all.
Is there any other way?
Here's the .vi I used and a snippet of my program.
Greetings,
Auer