如何缩放ncurses直方图程序的最小图形

时间:2014-10-06 11:38:59

标签: c graph histogram ncurses

我有ncurses程序打印带宽使用的直方图。我希望它能够缩放到最小值而不是始终为0(因此图形将从最小速度而不是零开始)。

图表基本上是这样打印的:

if (value / max * lines < currentline)
    addch('*');
else
    addch(' ');

如何更改计算以便最小化图表?

这是完整的图形打印功能:

void printgraphw(WINDOW *win, char *name,
        unsigned long *array, unsigned long max, bool siunits,
        int lines, int cols, int color) {
    int y, x;

    werase(win);

    box(win, 0, 0);
    mvwvline(win, 0, 1, '-', lines-1);
    if (name)
        mvwprintw(win, 0, cols - 5 - strlen(name), "[ %s ]",name);
    mvwprintw(win, 0, 1, "[ %s/s ]", bytestostr(max, siunits));
    mvwprintw(win, lines-1, 1, "[ %s/s ]", bytestostr(0.0, siunits));

    wattron(win, color);
    for (y = 0; y < (lines - 2); y++) {
        for (x = 0; x < (cols - 3); x++) {
            if (array[x] && max) {
                if (lines - 3 - ((double) array[x] / max * lines) < y)
                    mvwaddch(win, y + 1, x + 2, '*');
            }
        }
    }
    wattroff(win, color);

    wnoutrefresh(win);
}

1 个答案:

答案 0 :(得分:1)

除了min之外,您还需要max所有值。那么您的情况将是:

if ((value - min) / (max - min) * lines < currentline)
    addch('*');
else
    addch(' ');

(商(value - min) / (max - min)介于0和1之间,需要浮点运算。)