08-23-2016 08:12 AM
Hello ,
Is this possible to get multiple input as string into multiple output as string.
plz give me suggestions if this is possible asap.
Thanks
08-23-2016 08:23 AM
Hi jstkrity,
why did you highjack an old and totally unrelated thread? I created a new thread for you…
Yes, your problem is solvable using LabVIEW.
To get better answers you should provide an example VI and tell us expected output for the input data you provide…
08-23-2016 08:24 AM - edited 08-23-2016 08:25 AM
For Multi Input to single output you can use 'Concatenate String'.
For multi Input to multi output you need to learn LabVIEW basics
08-23-2016 08:24 AM - edited 08-23-2016 08:25 AM
08-31-2016 05:48 AM
Hello,
I want to show you a example as i attached the file.I want more than one output simultaneously as from more than one input is used.
08-31-2016 05:52 AM
can you explain your requirement elaborately. may be in steps based on your convenience.
you can do lot with string manupulation.
08-31-2016 06:02 AM
Hello,
I want to send more than one scpi command simultaneously and want to get more than one output simultenously as multiple input and multiple output(as input is in string form).
So how can i do in labview.
Thanks
08-31-2016 06:06 AM - edited 08-31-2016 06:07 AM
You can have an array of Strings if you think more string controls and idicators will looks messing your code
get index values and pass to you device as scpi command, like the same all the output from the device cab ne bundled into a single array with N indexes as you wish.
share your actual code which you have tried.
08-31-2016 06:12 AM - edited 08-31-2016 06:13 AM
Hi jstkrity,
whenever I see a ConcatString node like yours with lots of string constants around it I immediatly think:
"WTH don't you use a simple FormatIntoString here?"
I want to send more than one scpi command simultaneously
Read the manual of your DAQ device on how to format those multiple SCPI commands into one big string. There are formatting rules you need to apply!
Btw. even with one big string the commands are processed in order by your device and NOT "simultaneously"!
want to get more than one output simultenously
Again: read the manual of your DAQ device! It will tell you, which commands you need to send and if/how you can receive multpiple measurement values on one request!
08-31-2016 06:35 AM
Thank you Team.