Click here to Skip to main content
15,890,579 members
Home / Discussions / C#
   

C#

 
AnswerRe: remote sql Pin
Rob Philpott30-May-14 2:13
Rob Philpott30-May-14 2:13 
AnswerRe: remote sql Pin
DaveyM6930-May-14 3:14
professionalDaveyM6930-May-14 3:14 
SuggestionRe: remote sql Pin
AlphaDeltaTheta30-May-14 21:35
AlphaDeltaTheta30-May-14 21:35 
QuestionRajesh Pin
Member 1055450529-May-14 22:28
Member 1055450529-May-14 22:28 
AnswerRe: Rajesh Pin
Peter Leow29-May-14 22:34
professionalPeter Leow29-May-14 22:34 
AnswerRe: Rajesh Pin
Rob Philpott29-May-14 22:49
Rob Philpott29-May-14 22:49 
AnswerRe: Rajesh Pin
Subin Mavunkal29-May-14 23:51
Subin Mavunkal29-May-14 23:51 
Questionclassification using fuzzy logic C# Pin
praxprog29-May-14 18:23
praxprog29-May-14 18:23 
I want to write a small code in c# using Fuzzy Logic framework where user will give input number between 0 to 10 and that numbers needs to be classified as Low, Moderate and High. Low is 0 to 3, Moderate is 3 to 7 and High is between 6 to 10. Using triangular membership function. Any guess how to do it I read some tutorials on Fuzzy Framework but couldn't get my problem fit in those. Following is code I wrote,

C#
class Program
    {
        static void Main(string[] args)
        { 
            ContinuousDimension score = new ContinuousDimension("score", "score of word", "unit", 0, 10);    

            //Definition of basic fuzzy sets with which we will work
            //  input sets:

 ContinuousSet low = new RightQuadraticSet(score, "Low Score", 0, 3, 4);
            ContinuousSet high = new LeftQuadraticSet(score, "High Score", 6, 7, 10);
            ContinuousSet mod = new BellSet(score, "Moderate Score", 5, 1, 2);

....
}


How should I proceed further now. I have assigned manually some score to opinion words(about 7000) on scale of 0 to 10 and I want to classify intensity of this opinion words as low, moderate or high using triangular function. Using fuzzy category of each word I have to further implement rules like if word1 is low and word2 is high then orientation is moderate .
AnswerRe: classification using fuzzy logic C# Pin
Richard MacCutchan29-May-14 22:13
mveRichard MacCutchan29-May-14 22:13 
GeneralRe: classification using fuzzy logic C# Pin
praxprog30-May-14 2:16
praxprog30-May-14 2:16 
GeneralRe: classification using fuzzy logic C# Pin
Richard MacCutchan30-May-14 21:57
mveRichard MacCutchan30-May-14 21:57 
QuestionC# project Dependency on .net frame work Pin
prateek chauhan29-May-14 18:12
prateek chauhan29-May-14 18:12 
AnswerRe: C# project Dependency on .net frame work Pin
Eddy Vluggen29-May-14 20:47
professionalEddy Vluggen29-May-14 20:47 
AnswerRe: C# project Dependency on .net frame work Pin
Mycroft Holmes29-May-14 20:47
professionalMycroft Holmes29-May-14 20:47 
AnswerRe: C# project Dependency on .net frame work Pin
Rob Philpott29-May-14 22:54
Rob Philpott29-May-14 22:54 
AnswerRe: C# project Dependency on .net frame work Pin
BobJanova30-May-14 0:11
BobJanova30-May-14 0:11 
AnswerRe: C# project Dependency on .net frame work Pin
Dave Kreskowiak30-May-14 4:18
mveDave Kreskowiak30-May-14 4:18 
Questionmultithreading issue Pin
Nico Haegens29-May-14 17:47
professionalNico Haegens29-May-14 17:47 
AnswerRe: multithreading issue Pin
Eddy Vluggen29-May-14 20:43
professionalEddy Vluggen29-May-14 20:43 
GeneralRe: multithreading issue Pin
Nico Haegens29-May-14 22:55
professionalNico Haegens29-May-14 22:55 
GeneralRe: multithreading issue Pin
Eddy Vluggen30-May-14 5:25
professionalEddy Vluggen30-May-14 5:25 
AnswerRe: multithreading issue Pin
Bernhard Hiller29-May-14 21:26
Bernhard Hiller29-May-14 21:26 
GeneralRe: multithreading issue Pin
Nico Haegens29-May-14 22:34
professionalNico Haegens29-May-14 22:34 
GeneralRe: multithreading issue Pin
Bernhard Hiller29-May-14 23:48
Bernhard Hiller29-May-14 23:48 
AnswerRe: multithreading issue Pin
BobJanova30-May-14 0:06
BobJanova30-May-14 0:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.