亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cle.c

?? 聚類算法全集以及內附數據集
?? C
?? 第 1 頁 / 共 2 頁
字號:
                    "(default: %g)\n", radius);    printf("-b/f/r#  blank characters, field and record separators\n"           "         (default: \" \\t\\r\", \" \\t\", \"\\n\")\n");    printf("clsfile  file to read cluster set description from\n");    #ifdef MATVERSION    printf("patfile  pattern file to read (no header, only numbers)\n");    #else    printf("-d       use default header "                    "(field names = field numbers)\n");    printf("-h       read table header (field names) from hdrfile\n");    printf("hdrfile  file containing table header (field names)\n");    printf("tabfile  table file to read "                    "(field names in first record)\n");    #endif    return 0;                   /* print a usage message */  }                             /* and abort the program */  /* --- evaluate arguments --- */  for (i = 1; i < argc; i++) {  /* traverse arguments */    s = argv[i];                /* get option argument */    if (optarg) { *optarg = s; optarg = NULL; continue; }    if ((*s == '-') && *++s) {  /* -- if argument is an option */      while (1) {               /* traverse characters */        switch (*s++) {         /* evaluate option */          case 'x': msexp  = strtod(s, &s); break;          case 'p': radius = strtod(s, &s); break;          case 'b': optarg = &blanks;       break;          case 'f': optarg = &fldseps;      break;          case 'r': optarg = &recseps;      break;          #ifndef MATVERSION          case 'd': flags |= AS_DFLT;       break;          case 'h': optarg = &fn_hdr;       break;          #endif          default : error(E_OPTION, *--s);  break;        }                       /* set option variables */        if (!*s) break;         /* if at end of string, abort loop */        if (optarg) { *optarg = s; optarg = NULL; break; }      } }                       /* get option argument */    else {                      /* -- if argument is no option */      switch (k++) {            /* evaluate non-option */        case  0: fn_cls = s;      break;        case  1: fn_in  = s;      break;        default: error(E_ARGCNT); break;      }                         /* note filenames */    }  }  if (optarg) error(E_OPTARG);  /* check option argument and */  if (k != 2) error(E_ARGCNT);  /* the number of arguments */  i = (!fn_cls || !*fn_cls) ? 1 : 0;  if  (!fn_in  || !*fn_in ) i++;  #ifndef MATVERSION  if (fn_hdr) {                 /* set the header file flag */    flags = AS_ATT | (flags & ~AS_DFLT);    if (strcmp(fn_hdr, "-") == 0) fn_hdr = "";    if (!*fn_hdr) i++;          /* convert "-" to "" and */  }                             /* count assignment of stdin */  #endif                        /* check assignments of stdin: */  if (i > 1) error(E_STDIN);    /* stdin must not be used twice */  if (msexp < 0) error(E_MSEXP, msexp);  /* --- read cluster set --- */  scan = sc_create(fn_cls);     /* create a scanner */  if (!scan) error((!fn_cls || !*fn_cls) ? E_NOMEM : E_FOPEN, fn_cls);  fprintf(stderr, "\nreading %s ... ", sc_fname(scan));  if (sc_nexter(scan) < 0) error(E_PARSE, sc_fname(scan));  #ifdef MATVERSION  clset = cls_parse(scan);      /* parse the input cluster set */  #else  attset = as_create("domains", att_delete);  if (!attset) error(E_NOMEM);  /* create an attribute set */  if ((as_parse(attset, scan, AT_ALL) != 0)  ||  (as_attcnt(attset) <= 0)) /* parse the attribute set */    error(E_PARSE, sc_fname(scan));  clset = cls_parsex(scan, attset, 0);  #endif                        /* parse the cluster set */  if (!clset || !sc_eof(scan)) error(E_PARSE, sc_fname(scan));  #ifdef MATVERSION  attcnt = cls_incnt(clset);    /* get the number of attributes */  #else  attcnt = as_attcnt(attset);   /* get the number of attributes */  #endif  clscnt = cls_clscnt(clset);   /* get the number of clusters */  fprintf(stderr, "[%d attribute(s), ",   attcnt);  fprintf(stderr, "%d cluster(s)] done.", clscnt);  sc_delete(scan); scan = NULL; /* delete the scanner */  cls_msexp(clset, msexp);      /* set the membership exponent */  for (i = CLS_VMCNT; --i >= 0; )    cls_evcfg(clset, i,radius); /* configure the evaluation */  #ifdef MATVERSION  /* --- process patterns --- */  if (fn_in && *fn_in)          /* if an file name is given, */    in = fopen(fn_in, "r");     /* open the file for reading */  else {                        /* if no fine name is given, */    in = stdin; fn_in = "<stdin>"; }       /* use std. input */  fprintf(stderr, "\nreading %s ... ", fn_in);  if (!in) error(E_FOPEN, fn_in);  tfscan = tfs_create();        /* create a table file scanner and */  if (!tfscan) error(E_NOMEM);  /* set the separator characters */  if (blanks)  tfs_chars(tfscan, TFS_BLANK,  blanks);  if (fldseps) tfs_chars(tfscan, TFS_FLDSEP, fldseps);  if (recseps) tfs_chars(tfscan, TFS_RECSEP, recseps);  err = tfs_err(tfscan);        /* get the error information */  pat = vec_readx(tfscan, in, &attcnt);  if (!pat) {                   /* read the first training pattern */    if (err->code >= 0) error(E_FREAD, fn_in);    error(err->code, fn_in, 1, err->s, err->fld, err->exp);  }                             /* check for success */  do {                          /* pattern read loop */    cls_evaggr(clset, pat, 1);  /* aggregate the pattern */    patcnt++;                   /* count pattern and read next */  } while (vec_read(pat, attcnt, tfscan, in) == 0);  if (err->code < 0)            /* check for an error */    error(err->code, fn_in, patcnt +1, err->s, err->fld, err->exp);  if (tfs_delim(tfscan) != TFS_EOF)  /* check for end of file */    error(E_VALUE, fn_in, patcnt +1, "\"\"", 1);  if (in != stdin) fclose(in);  /* close the input file and */  in = NULL;                    /* clear the file variable */  fprintf(stderr, "[%d pattern(s)] done.\n", patcnt);  #else  /* --- process patterns --- */  fprintf(stderr, "\n");        /* terminate previous log message */  as_chars(attset, blanks, fldseps, recseps, "");  in = io_hdr(attset, fn_hdr, fn_in, flags|AS_NOXATT, 1);  if (!in) error(1);            /* read the table header */  k = AS_INST | (k & ~AS_ATT);  /* write the attribute names */  f = AS_INST | (flags & ~(AS_ATT|AS_DFLT));  i = ((flags & AS_DFLT) && !(flags & AS_ATT))    ? 0 : as_read(attset, in, f);  while (i == 0) {              /* record read loop */    tplcnt++;                   /* count tuple and sum its weight */    tplwgt += w = as_getwgt(attset);    as_desc(attset, stdout, 0, 0);    cls_valuex(clset, NULL);    /* set the data from a tuple */    cls_evaggr(clset, NULL, w); /* and aggregate the pattern */    i = as_read(attset, in, f); /* try to read the next record */  }  if (i < 0) {                  /* if an error occurred, */    err = as_err(attset);       /* get the error information */    tplcnt += (flags & (AS_ATT|AS_DFLT)) ? 1 : 2;    io_error(i, fn_in, tplcnt, err->s, err->fld, err->exp);    error(1);                   /* print an error message */  }                             /* and abort the program */  if (in != stdin) fclose(in);  /* close the table file and */  in = NULL;                    /* clear the file variable */  fprintf(stderr, "[%d/%g tuple(s)] done.\n", tplcnt, tplwgt);  #endif  /* --- compute and print evaluations --- */  printf("objfn   (min): %g\n", cls_eval(clset, CLS_OBJFN));  printf("coverage(max): %g\n", cls_eval(clset, CLS_COVERAGE));  printf("fdbidx  (min): %g\n", cls_eval(clset, CLS_FDBIDX));  printf("pcoeff  (max): %g\n", cls_eval(clset, CLS_PCOEFF));#if 0  printf("pcnorm  (max): %g\n", cls_eval(clset, CLS_PCNORM));#endif  printf("pentropy(min): %g\n", cls_eval(clset, CLS_PENTROPY));  printf("fhypvol (min): %g\n", cls_eval(clset, CLS_FHYPVOL));  printf("prpexp  (max): %g\n", cls_eval(clset, CLS_PRPEXP));  printf("sepdeg  (min): %g\n", cls_eval(clset, CLS_SEPDEG));  printf("partdens(max): %g\n", cls_eval(clset, CLS_PARTDENS));  printf("pdavg   (max): %g\n", cls_eval(clset, CLS_PDAVG));#if 0  printf("noise   (min): %g\n", cls_eval(clset, CLS_NOISE));#endif  /* --- clean up --- */  #ifndef NDEBUG  #ifdef MATVERSION  tfs_delete(tfscan);           /* delete the table file scanner */  #else  as_delete(attset);            /* delete the attribute set */  #endif  cls_delete(clset);            /* delete the cluster set */  #endif  return 0;                     /* return 'ok' */}  /* main() */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
26uuu精品一区二区| 国产一区二区三区免费观看| 国产精品国产三级国产普通话三级| 日韩欧美成人一区二区| 欧美一区二区三区四区视频| 欧美性受xxxx| 欧美va亚洲va香蕉在线| 日本一区二区电影| 日韩欧美在线网站| 成人av集中营| 精品视频在线视频| 日韩欧美一二区| 精品国产精品一区二区夜夜嗨| 久久精品视频免费| 中国色在线观看另类| 日本一区二区三区四区| 亚洲视频 欧洲视频| 久久av资源网| 99国产麻豆精品| 日韩一卡二卡三卡国产欧美| 国产精品福利电影一区二区三区四区| 亚洲在线一区二区三区| 国产一区在线观看视频| 欧美男人的天堂一二区| 国产精品国产三级国产aⅴ中文| 亚洲国产wwwccc36天堂| 99精品国产99久久久久久白柏| 欧美午夜精品理论片a级按摩| 久久一夜天堂av一区二区三区| 亚洲成人午夜影院| 99天天综合性| 国产精品无遮挡| 丝袜美腿亚洲一区| 色一区在线观看| 国产精品久久久爽爽爽麻豆色哟哟 | 六月丁香综合在线视频| 欧美优质美女网站| 亚洲精品乱码久久久久久黑人 | 日韩一二三四区| 同产精品九九九| 欧美性xxxxxx少妇| 亚洲高清免费一级二级三级| 色94色欧美sute亚洲13| 国产精品三级视频| 久久成人av少妇免费| 日韩三级av在线播放| 极品少妇xxxx偷拍精品少妇| 日韩午夜激情视频| 国产乱码精品一区二区三区av| 精品国产青草久久久久福利| 美女视频一区在线观看| 91国内精品野花午夜精品| 精品99一区二区| 国产成a人无v码亚洲福利| 国产色婷婷亚洲99精品小说| 国产成人精品影视| 亚洲国产毛片aaaaa无费看| 欧美福利一区二区| 国产精品69毛片高清亚洲| 亚洲视频你懂的| 日韩欧美一区二区久久婷婷| 99久久久精品| 亚洲国产视频一区| 欧美国产日韩在线观看| 欧美日韩亚洲综合一区| 国产高清成人在线| 午夜欧美2019年伦理| 国产人成一区二区三区影院| 欧美性做爰猛烈叫床潮| 岛国av在线一区| 爽好久久久欧美精品| 国产亚洲精品7777| 日韩视频中午一区| 在线观看亚洲a| 99精品黄色片免费大全| 国产一区999| 蜜桃视频在线观看一区| 亚洲国产一区二区三区青草影视| 久久欧美中文字幕| 欧美精品日韩一本| 精品视频在线看| 91国产丝袜在线播放| 波多野洁衣一区| 国产精品1区2区3区| 国产在线视频精品一区| 国产一区二区三区免费看| 天天色综合天天| 天堂蜜桃91精品| 亚洲一区在线视频| 香蕉成人啪国产精品视频综合网| 亚洲免费在线观看| 亚洲午夜精品17c| 亚洲高清免费观看 | 国产高清在线观看免费不卡| 国产精品久久久久久妇女6080| 亚洲伦理在线免费看| 国产精品护士白丝一区av| 国产精品天天摸av网| 亚洲国产欧美在线| 三级久久三级久久久| 日本vs亚洲vs韩国一区三区 | 亚洲欧洲综合另类在线| 亚洲一区视频在线观看视频| 亚洲成av人片| 国产99精品视频| 日本丶国产丶欧美色综合| 欧美日韩你懂的| 日韩欧美二区三区| 亚洲国产精品精华液2区45| 亚洲午夜免费视频| 在线成人av影院| 丰满岳乱妇一区二区三区| 国产麻豆欧美日韩一区| 欧洲精品在线观看| 91精品国产入口| 亚洲精品成a人| 国产二区国产一区在线观看| 欧美一三区三区四区免费在线看| 国产人妖乱国产精品人妖| 男女性色大片免费观看一区二区 | 亚洲国产综合在线| 国产成人日日夜夜| 欧美大片顶级少妇| 亚洲福利一二三区| 国产成人精品亚洲日本在线桃色| 精品伦理精品一区| 91精品国产欧美一区二区18| 国产偷v国产偷v亚洲高清| 亚洲午夜激情网页| 欧美亚洲国产一区二区三区va| 欧美国产日本韩| 国产真实乱偷精品视频免| 精品国产麻豆免费人成网站| 精品影院一区二区久久久| 午夜在线成人av| 欧美一区二区三区在| 日韩av中文字幕一区二区| 99精品久久久久久| 亚洲国产成人一区二区三区| 精品一区二区国语对白| 欧美色涩在线第一页| 日韩理论片网站| 成人v精品蜜桃久久一区| 日本一区二区综合亚洲| 成人av资源下载| 国产日韩高清在线| 岛国精品一区二区| 亚洲人成在线观看一区二区| 奇米亚洲午夜久久精品| 成人激情小说乱人伦| 精品久久久久久久久久久院品网| 美女国产一区二区| 欧美日韩精品综合在线| 麻豆国产精品官网| 日本一区二区三区dvd视频在线 | 亚洲国产日韩在线一区模特| 欧美系列日韩一区| 久久成人综合网| 久久综合网色—综合色88| 99久久99久久精品免费看蜜桃| 亚洲欧洲成人精品av97| 欧美性猛交xxxxxx富婆| 久99久精品视频免费观看| 国产女同性恋一区二区| 97精品超碰一区二区三区| 日本人妖一区二区| 一区二区三区欧美在线观看| 67194成人在线观看| 国产精品夜夜嗨| 亚洲va欧美va人人爽| 久久色在线视频| 欧美日韩一区二区在线观看| 精品无人码麻豆乱码1区2区 | 国产日产亚洲精品系列| 国产剧情一区二区三区| 2020国产精品| 日韩亚洲欧美高清| 91小视频在线| 成人激情小说乱人伦| 香蕉影视欧美成人| 日韩精品中文字幕一区二区三区 | 亚洲一区二三区| 亚洲人成精品久久久久| 国产日韩在线不卡| 91麻豆.com| 欧美综合亚洲图片综合区| 91在线观看视频| 色综合视频在线观看| 91亚洲永久精品| 色综合中文字幕| 欧美性猛片xxxx免费看久爱| 99久久免费国产| 欧美性色综合网| 亚洲1区2区3区4区| 偷拍一区二区三区| 久久99精品网久久| 丰满少妇久久久久久久| 99天天综合性| 欧美在线一区二区三区| 亚洲精品一区二区三区香蕉|