What you can do is create a 1D array of rows you want to keep.
A = array of rows of interest
B = array to be operated on
C = new array
Wire array A and array B to the for loop, but disable autoindexing for
array B. Then use IndexArray VI with two indexes with column index
disabled. Wire element of array A (generated automatically by For loop
during autoindexing) to the IndexArray. Wire IndexArray output to the other
side of For loop, that will be array C.
Disadvantage is that now you have a second array and more memory is taken
up. With memory prices going up, boss might not be happy. I think that
memory manager might be smart enough to realize that array A is not needed
if you do not use it after the operation. Do not know for sure though.
Brent Kirkwood et> wrote in message
news:jkNL3.551$b84.94377@ptah.visi.com...
> I am relatively new to labview - still not completely used to thinking
> in the style of labview's programming language...
>
> My problem SEEMS like it should be a very simple one, but I am having
> trouble implementing it.
>
> I am trying to figure out how to delete individual "rows" in array.
>
> I have a 2 dimensional array, and I want to delete certain entries in
> one of the dimensions.
>
> In other words, If I look at the 2D array as columns and rows, I know I
> want to delete rows 1, 4, 9, 10, 17, etc...
>
> Any help would be greatly appreciated!
>
> Brent
> fever@yuck.net