-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
24 lines (17 loc) · 797 Bytes
/
README
File metadata and controls
24 lines (17 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Fuzzy Control Language (FCL) Library
A basic implementation of the FCL, see doc/.
To compile, run 'make' in the src/ directory.
This should build the exectuable file RunFCL,
as well as the library libfcl.a. A successful
make will copy the RunFCL to the fuzzy/ directory.
To run a FCL file, three arguments are required:
1) FCL model file
2) Data input file with values of the fuzzy inputs
3) Output file where results are written
For example, from the fuzzy/ directory:
"./RunFCL data/test.fcl data/test.in test.out"
An optional fourth argument can specify a column
name in the input file that will be used as a label
in the output for each input line.
An optional fifth argument specifies the file delimeter
for parsing the input data file. Default is a comma.