Click here to Skip to main content
15,904,415 members
Home / Discussions / C#
   

C#

 
GeneralRe: Data not Insert Pin
mjawadkhatri2-Aug-10 22:08
mjawadkhatri2-Aug-10 22:08 
AnswerRe: Data not Insert Pin
Covean2-Aug-10 22:32
Covean2-Aug-10 22:32 
GeneralRe: Data not Insert Pin
Bernhard Hiller3-Aug-10 2:01
Bernhard Hiller3-Aug-10 2:01 
QuestionRedirect WebPage through Window Button in C# Pin
ShafiqA2-Aug-10 19:47
ShafiqA2-Aug-10 19:47 
AnswerRe: Redirect WebPage through Window Button in C# Pin
Goutam Patra2-Aug-10 20:05
professionalGoutam Patra2-Aug-10 20:05 
GeneralRe: Redirect WebPage through Window Button in C# Pin
ShafiqA2-Aug-10 20:10
ShafiqA2-Aug-10 20:10 
QuestionFeed forward Neural network (back propagation) code classification problem [modified] Pin
karayel_kara2-Aug-10 19:01
karayel_kara2-Aug-10 19:01 
AnswerRe: Feed forward Neural network (back propagation) code classification problem Pin
OriginalGriff2-Aug-10 21:47
mveOriginalGriff2-Aug-10 21:47 
Firstly, when you post code, use the "code block" widget rather than the "inline code" - it preserves the formatting and makes it easier to read:
int iterasyon=100000;
while (it = 0.00001)//iteration start section
   {
   mmse = 0;
   mae = 0;
   for (int nf = 0; nf < 400; nf++)//dataset count*********
      {
      mmse += hesaplas(ndata, nf);
      //mae += smean_abs_err;
      trains(nf);
      }//nf
   mmse = 0.5 * (mmse / 400 * 5));

   if (it % 100 == 0)
      {
      yazs.WriteLine(mmse.ToString());
      yazs.Flush();
      }
   it++;
   }//it


Secondly, if you are going to post code, make sure it compiles. That won't: it will complain about
while (it = 0.00001)//iteration start section
"Cannot implicitly convert type xxx to bool"
Even if it did, it would execute the outer loop either once, or an infinite number of times.

Thirdly, don't use magic numbers: how do you know you have 400 entries? What is the
mmse = 0.5 * (mmse / 400 * 5));
supposed to do?
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together.

AnswerRe: Feed forward Neural network (back propagation) code classification problem Pin
Keith Barrow3-Aug-10 10:53
professionalKeith Barrow3-Aug-10 10:53 
GeneralRe: Feed forward Neural network (back propagation) code classification problem [modified] Pin
karayel_kara3-Aug-10 15:40
karayel_kara3-Aug-10 15:40 
GeneralRe: Feed forward Neural network (back propagation) code classification problem [modified] Pin
Keith Barrow4-Aug-10 1:26
professionalKeith Barrow4-Aug-10 1:26 
GeneralRe: Feed forward Neural network (back propagation) code classification problem Pin
karayel_kara6-Aug-10 18:35
karayel_kara6-Aug-10 18:35 
GeneralRe: Feed forward Neural network (back propagation) code classification problem [Long post] Pin
Keith Barrow7-Aug-10 1:04
professionalKeith Barrow7-Aug-10 1:04 
GeneralResponse to e-mail sent directly from OP Pin
Keith Barrow7-Aug-10 9:36
professionalKeith Barrow7-Aug-10 9:36 
GeneralRe: Response to e-mail sent directly from OP Pin
karayel_kara10-Aug-10 17:56
karayel_kara10-Aug-10 17:56 
GeneralRe: Response to e-mail sent directly from OP Pin
Keith Barrow11-Aug-10 10:16
professionalKeith Barrow11-Aug-10 10:16 
GeneralRe: Response to e-mail sent directly from OP Pin
karayel_kara12-Aug-10 18:15
karayel_kara12-Aug-10 18:15 
GeneralRe: Response to e-mail sent directly from OP Pin
Keith Barrow12-Aug-10 23:12
professionalKeith Barrow12-Aug-10 23:12 
QuestionMasking in C# Pin
Pdaus2-Aug-10 18:28
Pdaus2-Aug-10 18:28 
AnswerRe: Masking in C# Pin
Pete O'Hanlon2-Aug-10 21:37
mvePete O'Hanlon2-Aug-10 21:37 
QuestionThis constraint cannot be enabled as not all values have corresponding parent values Pin
Vimalsoft(Pty) Ltd2-Aug-10 11:42
professionalVimalsoft(Pty) Ltd2-Aug-10 11:42 
AnswerRe: This constraint cannot be enabled as not all values have corresponding parent values Pin
Gopal.S2-Aug-10 17:14
Gopal.S2-Aug-10 17:14 
GeneralRe: This constraint cannot be enabled as not all values have corresponding parent values Pin
Vimalsoft(Pty) Ltd2-Aug-10 21:40
professionalVimalsoft(Pty) Ltd2-Aug-10 21:40 
QuestionChange (or disable) selection color of listview [SOLVED partially] Pin
sodevrom2-Aug-10 8:11
sodevrom2-Aug-10 8:11 
AnswerRe: Change (or disable) selection color of listview (not easy :( ) Pin
Eddy Vluggen2-Aug-10 8:23
professionalEddy Vluggen2-Aug-10 8:23 

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.