⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hist.h

📁 MPICH是MPI的重要研究,提供了一系列的接口函数,为并行计算的实现提供了编程环境.
💻 H
字号:
/*   Histogram handling stuff for states in Upshot   Ed Karrels   Argonne National Laboratory*/#ifndef _HIST_H_#define _HIST_H_#include "states.h"#include "stats.h"typedef struct stateHist_ {  Tcl_Interp *interp;  stateData *state;  int state_no;  double *lens;  double last_left, last_right;  double shortLen, longLen;  int firstIdx, lastIdx;  int *last_bins, last_nbins;  statData *vis_stats;  char *array_name, *idx_prefix;/* all the fields from here on down are mirrored in the Tcl array */  char *window;  char *canvas;  char *time_lbl;  char *xscrollbar;  char *xscrollcommand;  char *color;  char *bitmap;  char *outlineColor;  int bw;			/* is black&white? */  int nbins;  double maxbin;  double start, end;  double left, right;  int width, height;    /* might want to write these guys in C */  double scan_time, rclick_time, lclick_time, yclick;    /* stats on all the data */  int n;  double sum, average, std_dev;  double shortest, longest;    /* stats on the visible range */  int vis_n;  double vis_sum, vis_average, vis_std_dev;  double vis_shortest, vis_longest;  } stateHist;#ifdef __STDC__#define ARGS(x) x#else#define ARGS(x) ()#endifint Hist_Init ARGS(( Tcl_Interp *interp));#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -