09-21-2015 09:19 PM
I'm have trouble finding the correct format specifiers to use with the floating point and decimal numbers using the "format into file" function. I was able to use format specifers correctly with the same function in loops but for some reason (maybe indexing) the same specifiers will not work outside of a loop. I have read the charts for the format specifiers and cannot see where it is incorrect. The error message says that I'm trying to connect two different types of connections yet calls the source and sink as the same type. Please advise.
Thank you!
09-21-2015 09:22 PM
It is not the same type. The source is an array of doubles. The sink is a double. (A scale, not an array). Likewise for the blue integer wire.
09-22-2015 10:26 AM
Thanks Ravens Fan,
So will this function work outside of a loop and can you tell me what the correct format specifier should be please?
Thanks!
09-22-2015 04:01 PM
A format into file or format into string cannot take an array function. You need to use Index Array to get a particular value out of the array, or put the function into a loop and turn on auto-indexing.
09-22-2015 07:16 PM
Ok, Thanks for your help, I appreciate it.