in reply to Re: trouble with system calls
in thread trouble with system calls
svm_classify is a program that produces an output file named svm_predictions. after my system call, i want to read the content of svm_predictions and assign it to the array named values. however, when I check the directory, svm_predictions does not exist... I made sure that the directory has the right permissions...thanks a lot!chdir("/home/code/"); system("svm_classify zkereigenout.dat svmmodel.mod"); open(IN,"<svm_predictions"); @values = <IN>; close(IN);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: (3) trouble with system calls
by ysth (Canon) on Feb 10, 2004 at 07:40 UTC | |
|
Re: (3) trouble with system calls
by bart (Canon) on Feb 10, 2004 at 07:44 UTC | |
|
Re: Re: Re: trouble with system calls
by Ao (Friar) on Feb 10, 2004 at 22:58 UTC |