Last change
on this file since 121 was
121,
checked in by sz, 11 years ago
|
updated file headers and makefiles
|
-
Property svn:eol-style set to
native
|
File size:
799 bytes
|
Rev | Line | |
---|
[121] | 1 | // This file is a part of the Framsticks GDK. |
---|
| 2 | // Copyright (C) 2002-2014 Maciej Komosinski and Szymon Ulatowski. See LICENSE.txt for details. |
---|
[109] | 3 | // Refer to http://www.framsticks.com/ for further information. |
---|
| 4 | |
---|
[121] | 5 | /// this is a module included into neuroimpl-fuzzy |
---|
[109] | 6 | /// it converts string parameters - fuzzy sets and fuzzy rules - into appropriate variables |
---|
| 7 | |
---|
| 8 | #ifndef _neuroimpl_fuzzy_f0_h |
---|
| 9 | #define _neuroimpl_fuzzy_f0_h |
---|
| 10 | |
---|
| 11 | #include <ctype.h> |
---|
| 12 | #include <frams/util/sstring.h> |
---|
| 13 | |
---|
| 14 | class FuzzyF0String |
---|
| 15 | { |
---|
| 16 | public: |
---|
| 17 | static int convertStrToSets(const SString& str, double numbers[], int nrOfSets); |
---|
| 18 | static int countInputsOutputs(const char* str, int ruldef[], int rulesNr); |
---|
| 19 | static int convertStrToRules(const SString& str, const int ruledef[], int **rules, int setsNr, int rulesNr, int &maxOutputNr); |
---|
| 20 | }; |
---|
| 21 | |
---|
| 22 | #endif |
---|
| 23 | |
---|
Note: See
TracBrowser
for help on using the repository browser.