Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-06-04 Thread Bichillo
Hi!! The example that I have sent is an example that other person sent and I modified to show my problem . Thanks for your help!

Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-06-04 Thread Bichillo
Thank you!! It works properly!! Thank you, thank you, thank you! Graci

Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-06-03 Thread altenbach
I do not understand why you convert the number to U8, leaving you only 8 elements for the resulting array if you later want to replace element #12. Whay don't you just remove the "to U8" node, and you'll have 32 booleans in the resulting array to fiddle with. It does not make much sense to create

Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-06-03 Thread Dennis Knutson
You could possibly use the Reshap Array function. In the example, if you first Reshape the Array and use 13 as the dimension size, then your Replace Array Suobset function would work correctly.

Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-06-03 Thread Bichillo
Thank you!! So, the problem is the function that I am using!! If I want to write a value in an array, and before doing this I don't want to write a default value. What function can I use? I know that Insert Into array doesn't work properly in my application! Thanks in advance! Graci

Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-06-03 Thread Dennis Knutson
As your example shows with the indicators Array and Array2, you don't have to initialize an array to write to it. If, however, you use the Replace Array Subset, there has to be something in the array to replace before you actually replace it.

Re: Is neccesary to initialize an array of indicators to be able to show my results?

2004-05-24 Thread altenbach
Could you explain what you mean by "Initialize the array"? Maybe you could attach an example.

Is neccesary to initialize an array of indicators to be able to show my results?

2004-05-24 Thread Bichillo
I am working using Labview 7, and I have a problem when I have to show my results in an boolean indicators array. The problem is that I have to initialize the array to see the results. Is it normal or am I doing something wrong?Has it any solution? Thanks in advanced. Graci