Hello i downloaded a program fuzzyK and i want to run it through a perl script.
the program file name is aerie and i call it from the command line in LINUX using
bash-3.00# ./aerie
Aerie> load Datasettrunc.cdt
Loading TableData from Datasettrunc.cdt
File has 98 rows and 106 columns
Done Loading Datasettrunc.cdt
Aerie> fuzzy 120
K/3 = 40
Please enter a file name to save the data:sampleoutfile
the program runs......
Done Computing Fuzzy KMeans
67 unique centroids identified
Saving Prototypes
Saving Memberships
Saving Hard
Aerie> Aerie> exit
bash-3.00#
i looked at a similar post ( on this website) but the solution there did not work for me.
i have tried using that solution
open C, "|./aerie";
print C "load Datasettrunc.cdt fuzzy 120 sclustering";
close C;
and also tried using the
system("./aerie load Datasettrunc.cdt fuzzy 120 sclustering");
both of them stop at the
Aerie>
any help is appreciated.
thanks in advance
the program file name is aerie and i call it from the command line in LINUX using
bash-3.00# ./aerie
Aerie> load Datasettrunc.cdt
Loading TableData from Datasettrunc.cdt
File has 98 rows and 106 columns
Done Loading Datasettrunc.cdt
Aerie> fuzzy 120
K/3 = 40
Please enter a file name to save the data:sampleoutfile
the program runs......
Done Computing Fuzzy KMeans
67 unique centroids identified
Saving Prototypes
Saving Memberships
Saving Hard
Aerie> Aerie> exit
bash-3.00#
i looked at a similar post ( on this website) but the solution there did not work for me.
i have tried using that solution
open C, "|./aerie";
print C "load Datasettrunc.cdt fuzzy 120 sclustering";
close C;
and also tried using the
system("./aerie load Datasettrunc.cdt fuzzy 120 sclustering");
both of them stop at the
Aerie>
any help is appreciated.
thanks in advance