this is the sturcture of my perl scrip :
-frist part of my perl script
-system call to matlab (this needs to produce file A which doesnt exist so far)
-second part of my perl script (this opens file A)
do you just want me to change the system call to
my $junk = `system call here`;?
will this store file A in the same directory as my perl script?
and will the second part of my perl script run only after the system call is done and it has produces file A?
Thank you again