Hello
I'm trying to create a matlab script to invoke capture.exe and run a tcl script.
I was able to figure iut how to open the capture from matlab by using the function system("...\capture.exe");
I was able to run tcl script from capture command windows using source{.../myScript.tcl}
Now I would like to merge this two commands together with something like:
system(["...\capture.exe" ".../myScript.tcl"]);
(just like running .exe and passing arguments) but it doesnt seems to work.
Is it even possible?
thanks in advance