08-17-2010 04:46 PM
This is a very easy problem, but I'm a little confused. I am trying to output from the Formula VI to a Indicator. I get a broken wire error with the following text:
"You have connected two terminals of different types. The type of the source is 2-D array of double [64-bit real (~15 digit precision)]. The type of sink is double [64-bit real (~15 digit precision)]."
What type of indicator should I use?
Thanks!
Solved! Go to Solution.
08-17-2010 04:52 PM
Remove the broken wire (Ctrl+B).
Right click on the formula node output and select Create Indicator.
Felix
08-17-2010 04:58 PM
@Purdue17 wrote:
"You have connected two terminals of different types. The type of the source is 2-D array of double [64-bit real (~15 digit precision)]. The type of sink is double [64-bit real (~15 digit precision)]."
Read the sentence. The source is a 2D array or double. The sink (which is the indicator in this case) is double (the word double refers to a double precision number, or DBL). It is not a 2D array. Your indicator needs to be a 2D array of DBL.
08-17-2010 05:26 PM
@Purdue17 wrote:
What type of indicator should I use?
Thanks!
You know I had that problem once upon a time too! It seams like no matter how hard you look through the numeric controls palatte you can't find an array!
but if you search the array & cluster section you CAN drop an empty array object then drop the desired element type into the hole in the middle of the array.
08-17-2010 06:39 PM - edited 08-17-2010 06:48 PM
Purdue17 wrote:What type of indicator should I use?
There are many different flavors of indicators that can display 2D arrays. Using Felix's instructions, you get a plain 2D array.
Another possibilities would be a waveform graph or intensity graph. Pick whatever is most appropriate for the job. 😉
08-18-2010 08:41 AM
When you drop an array, it's 1D by default. You can right-click and select 'add dimension'.
Felix
02-21-2013 12:23 PM
Sorry to disturb this topic but the true is I can't create a new topic and I have the same.
I am doing some tutorials fo the Labview 2009 and I find myself stuck in the following problem. My wire breaks after the loop and I can't find the reason.
02-21-2013 01:39 PM
Did you try the "New Message" button on the forum page for LabVIEW?
You have an auto-indexing tunnel thus creating a 1-D array of references. Right click on it and disable auto-indexing.
Keep working through the tutorials because I'm sure tunnels are covered in there somewhere.