Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

void Impala::Core::Table::Bayes::DumpMatrixProb_c_gAsList (  )  [inline]

Definition at line 432 of file Bayes.h.

References Impala::Core::Table::AnnotationTable::GetLabel(), mConceptNum, mGenreNum, mProb_c_g, tabConcept, and tabGenre.

Referenced by Impala::Core::Table::BayesCondProb::CalcConceptConditionalPriorProbabilityBayesRule().

00433     {
00434         std::cout << std::endl << "mProb_c_g[k][j]" <<" (" << mConceptNum << " x " << mGenreNum << "):" << std::endl;
00435         for (int j=0; j<mGenreNum; j++)
00436         {
00437             for (int k=0; k<mConceptNum; k++)
00438             {
00439                 String strGenre = tabGenre[j]->GetLabel();
00440                 String strConcept = tabConcept[k]->GetLabel();
00441                 String name = strGenre + "-" + strConcept;
00442                 printf("%s\t\t%.3f\n",name.c_str(), mProb_c_g[k][j]);
00443             }
00444             printf("\n");
00445         }
00446     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:20:47 2011 for ImpalaSrc by  doxygen 1.5.1