00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 static const char docstring[] =
00011 " mixNprob2d: probabilities under normal mixture (2 dimensions)\n"
00012 "\n"
00013 " p=mixNprob2d(i1,i2,model,mode);\n"
00014 " * This routine has been superseded by mixNprobNd. But we retain it\n"
00015 " because it can be much faster for 2d models.\n"
00016 "\n"
00017 " Inputs:\n"
00018 " real i1[m,n];\n"
00019 " real i2[m,n];\n"
00020 " real model[6,k];\n"
00021 " opt int logmode = 1;\n"
00022 "\n"
00023 " Outputs:\n"
00024 " real p[m,n];\n"
00025 "\n"
00026 " See Also: mixN2mixture2d, mixNprobNd\n"
00027 "\n"
00028 " implemented as a mex file\n"
00029 "\n"
00030 " MJT 20 july 1998: tested exhaustively against mixNprob,\n"
00031 " the m-file for finding gaussian mixture probabilities,\n"
00032 " and found agreement to within floating-point accuracy\n"
00033 "\n"
00034 "";
00035
00036
00037