04-08-2024 12:26 PM
I am generating two LVM files, but I need to join them to make them one, how can I do it?
04-08-2024 12:45 PM
It depends, how exactly you would like to join both. An easiest way probably is to read both, merge, then save, something like that:
Graphs:
04-08-2024 12:52 PM
the idea is to do it as if it were a single file with a continuous acquisition. because I am dividing the acquisition.
04-08-2024 01:43 PM
@Javo20200 wrote:
the idea is to do it as if it were a single file with a continuous acquisition. because I am dividing the acquisition.
Then you can use Append instead of Merge:
04-09-2024 04:06 AM
system exec Copy File1 File2 > File3
04-09-2024 04:37 AM - edited 04-09-2024 04:40 AM
@Yamaeda wrote:
system exec Copy File1 File2 > File3
This will not work (I guess), because you will get header in the middle of the data, please try yourself:
Please post your functional LabVIEW code (in additional, execution of the command
Copy File1 File2 > File3
will result copy of the File1 into File2 and the string " 1 file(s) copied." inside of File3 instead of joined content), I think.
04-09-2024 06:19 AM
My bad, it should be copy test.txt+test2.txt test3.txt
Yes, it's a pure append which might result in headers in the middle