11-13-2015 03:14 PM
OK, I removed the build array function and now when I run this I am seeing the following error
11-13-2015 03:20 PM - edited 11-13-2015 03:22 PM
Wire a FALSE to the unflatten operation, indicating that the string does not contain a size header.
Also, instead of wiring a two to the endian input, just right-click the terminal and "create constant". Then select the desired mode from the enum.
Makes the code self-documenting.
11-13-2015 03:37 PM
Thanks Kyle, that works pretty well.
One other question... how difficult would it be to perform some calculations on the numbers in that range (14th element and 127 additional elements) of the subarray and then store the calculations into sub array as elents 0 - 127?
I would like to multiply each value by 3.35693359375 and then convert to decimal and subtract 5020 before storing these values into
the subarray. The numbers in channels are hexidecimal 2's compliment so as I understand, the hexidecimal values greater than 7FFF are negative numbers...
Thanks again
11-13-2015 03:47 PM
thanks altenbach, that definietly fixed that issue
11-13-2015 03:50 PM - edited 11-13-2015 03:50 PM
Sounds like you want this

11-17-2015 07:37 AM
Thanks Crossrulz
One more question, I may want to pull this string data from a cluster... Is it possible to substitute the string input to this with the rest of the binary string output from an Unflatten From String Function?
If so, what would I use for a delimiter for the Spreadsheet String To Array Function? (not sure what the Unflatten From String Function sets as a delimiter if any at all...)
Thank you for your help with this...
11-17-2015 08:07 AM
@LV-rookie wrote:
One more question, I may want to pull this string data from a cluster...
Sounds like you need to use Unbundle By Name to get the string from the cluster.
11-17-2015 08:52 AM
I think that I phrased that incorrectly...
I have a cluster which I use an Unflatten From String Function on and it outputs a "rest of binary string" binary string.
This is a binary string that I would like to feed into the Spreadsheet String To Array Function but I am not sure this string
has a delimiter or if it just treats this like one long string of binary data.
11-17-2015 08:55 AM
@LV-rookie wrote:
I think that I phrased that incorrectly...
I have a cluster which I use an Unflatten From String Function on and it outputs a "rest of binary string" binary string.
This is a binary string that I would like to feed into the Spreadsheet String To Array Function but I am not sure this string
has a delimiter or if it just treats this like one long string of binary data.
This is when we again ask for an exact example of your input data and exactly what you expect for an output. Please include the cluster type as well.
11-17-2015 11:57 AM