简单的gnuplot封装接口

有时候需要反复验证一点点数字信号处理的程序,因为简单,通常都是单个文件进行编译。如果只执行一次,将数据保存到文件里,然后使用电子表格打开,可以绘制曲线。但是如果需要反复的验证调整编写函数,那么能简单的绘制曲线就很有必要了。
因为是出于验证目的,速度就不是很必要,能验证结果就好。
据说gnuplot是能媲美Matlab的绘图软件。能不能媲美不重要,重要的是它小巧,但功能完备,简单易用。

  • 先提供一个简易的gnuplot绘制曲线的封装接口。
// File Name: MySimplePlot.hpp
#ifndef _MY_SIMPLE_PLOT_H_
#define _MY_SIMPLE_PLOT_H_

#ifdef _WIN32
#include <windows.h>
#define popen _popen
#define pclose _pclose
#else
#include <unistd.h>
#endif
#include <vector>
#include <string>
#include <stdexcept>
#include <stdio.h>

// gnuplot的GUI有wxWidgets和Qt两种
#define USE_WX
//#define USE_QT

class XYChart
{
public:
    XYChart();
    ~XYChart();
    // 清除所有数据
    void clear();
    // 设置画图窗口的标题和XY坐标的标签
    void title(const char* title, const char* xlabel=NULL, const char* ylabel=NULL );
    // 添加数据
    void add(const char* title,int length, double* y, double* x = NULL);
    // 绘制直线
    void plot();

private:
    XYChart(const XYChart&);
    XYChart& operator=(const XYChart& src);
    void * operator new(size_t size);

    FILE *gnu_pipe;
    bool init_ok;
    std::vector<std::vector<double>> Xs;
    std::vector<std::vector<double>> Ys;
    std::vector<std::string> Ts;
    std::vector<std::string> Fs;
};

XYChart::XYChart()
{
    gnu_pipe = popen("gnuplot", "w");
    //gnu_pipe = popen("\"C:\\Program Files\\gnuplot\\bin\\gnuplot.exe\"", "w");
    if(gnu_pipe)
    {
        init_ok = true;
#ifdef USE_QT
        fprintf(gnu_pipe, "set term qt 0 title \"XYPlot\"\n");
#endif
#ifdef USE_WX
        fprintf(gnu_pipe, "set term wx 0 title \"XYPlot\"\n");
#endif
    }
    else throw std::runtime_error("XYChart() cannot open gnuplot");
}

XYChart::~XYChart()
{
    if(init_ok)
    {
        fprintf(gnu_pipe, "exit\n");
        pclose(gnu_pipe);
        clear();
    }
}

void XYChart::title( const char* title, const char* xlabel, const char* ylabel )
{
    if(init_ok)
    {
        fprintf(gnu_pipe, "set title \"%s\"\n", title);
        if(xlabel) fprintf(gnu_pipe, "set xlabel \"%s\"\n", xlabel);
        if(ylabel) fprintf(gnu_pipe, "set ylabel \"%s\"\n", ylabel);
    }
}

void XYChart::add(const char* title,int N, double* y, double* x )
{
    // 添加数据,就是简单的将数据写入文件
    if(!title)
        throw std::invalid_argument("XYChart::add() the title is NULL");
    if(N <= 0)
        throw std::invalid_argument("XYChart::add() the data length N <= 0");

    std::vector<double> X(N), Y(N);
    for(int i = 0; i < N; i++) Y[i] = y[i];
    if(x != NULL)
    {
        for(int i = 0; i < N; i++) X[i] = x[i];
    }
    else
    {
        for(int i = 0; i < N; i++) X[i] = i;
    }

    std::string T(title);
#ifdef _WIN32
    std::string filename = "D:\\\\";
#else
    std::string filename = "./";
#endif
    filename += T;
    filename += ".lqbz";

    Fs.push_back(filename);
    Xs.push_back(X);
    Ys.push_back(Y);
    Ts.push_back(T);

    FILE* pf = fopen(filename.c_str(), "w");
    if(pf)
    {
        for(int n = 0; n < N; n++)
        fprintf(pf, "%lf %lf \n", X[n], Y[n]);
        fclose(pf);
    }
    else throw std::runtime_error("XYChart::add() cannot open file for writing data");
}

void XYChart::clear()
{
    Xs.clear();Ys.clear();Ts.clear();
    int count = Fs.size();
    for(int i = 0; i < count; i++) remove(Fs[i].c_str());
    Fs.clear();
}

void XYChart::plot()
{
    // 直接通过管道调用gnuplot的指令画图
    // 可以很方便的修改成其他需要的命令
    int array_count  = Xs.size();
    if(array_count == 0) return;
    if(init_ok)
    {
        fprintf(gnu_pipe, "clear\n");
        fprintf(gnu_pipe, "unset label\n");
        fprintf(gnu_pipe, "set autoscale xy\n");
        fprintf(gnu_pipe, "plot \"%s\" using 1:2 title \"%s\" with lp lw 2 pt 0\n", Fs[0].c_str(), Ts[0].c_str());
        for(int i = 1; i < array_count; i++)
        {
            fprintf(gnu_pipe, "replot \"%s\" using 1:2 title \"%s\" with lp lw 2 pt 0\n", Fs[i].c_str(), Ts[i].c_str());
        }
        fprintf(gnu_pipe, "\n\n");
        fflush(gnu_pipe);
    }

#if defined (_WIN32) && (_MSC_VER)
    HWND hFrame = FindWindowEx(NULL,NULL,NULL,"XYPlot");
    SwitchToThisWindow(hFrame, TRUE);
#endif
}

#endif//_MY_SIMPLE_PLOT_H_
  • 来一个简单的hanning窗低通滤波器测试一下。
#include <fstream>
#include <math.h>
#include <vector>
#include "MySimplePlot.hpp"

typedef std::vector<double> DoubleVector;

const double PI = 3.141592653589793238462643383;

DoubleVector hanning_window(int N)
{
    DoubleVector window(N);
    int M = N - 1;
    for(int i = 0; i < N; i++)
    {
        window[i] = 0.5 - 0.5*cos(2.0*PI*i/M);
    }
    return window;
}


DoubleVector lowpass_sinc(int N, double fc)
{
    DoubleVector data(N);
    int M = N - 1;
    for(int i = 0; i < N; i++)
    {
        int n = i-M/2;
        if(n==0) data[i] = 2.0*fc;
        else data[i] = sin(n*2.0*PI*fc)/(n*PI);
    }
    return data;
}

DoubleVector convolution(const DoubleVector& x, const DoubleVector& h)
{
    int x_length = x.size();
    int h_length = h.size();
    int length = x_length + h_length - 1;
    DoubleVector result(length, 0.0);
    for(int i = 0; i < length; i++)
    {
        for(int j = 0; j < h_length; j++)
        {
            if((i-j >= 0) && (i-j<x_length))
            {
                result[i] += h[j]*x[i-j];
            }
        }
    }
    return result;
}

DoubleVector inner_product(const DoubleVector& x, const DoubleVector& y)
{
    int x_length = x.size();
    int y_length = y.size();
    if(x_length != y_length)
        throw std::invalid_argument("inner_product() x.size() != y.size() ");
    DoubleVector result(x_length);
    for(int i = 0; i < x_length; i++)
    {
        result[i] = x[i]*y[i];
    }
    return result;
}

int main()
{
    int data_length = 1000;
    int filter_length = 155; 

    DoubleVector sine_before(data_length);
    for(int i = 0; i <data_length; i++)
    {
        // 1V/1kHz + 0.1V/5kHz + 0.2V/10Hz
        sine_before[i]=sin(2*PI*i*0.01) + 0.1*sin(2*PI*i*0.05) + 0.2*sin(2.0*PI*i*0.1);
    }

    DoubleVector win = hanning_window(filter_length);
    DoubleVector sinc = lowpass_sinc(filter_length, 0.02); 
    DoubleVector h = inner_product(win, sinc);
    DoubleVector sine_after = convolution(sine_before, h);

    XYChart chart1;
    chart1.title("FIR Filter");
    chart1.add("before", data_length-filter_length+1, sine_before.data());
    chart1.add("after", data_length-filter_length+1, sine_after.data());
    chart1.plot();

    XYChart chart2;
    chart2.title("Filter Data Plot");
    chart2.add("sinc", filter_length, sinc.data());
    chart2.add("h", filter_length, h.data());
    chart2.plot();
    getchar();

    return 0;
}

来两张生成的效果图:


After Filter.png

Filter data plot.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,142评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,298评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,068评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,081评论 1 291
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,099评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,071评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,990评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,832评论 0 273
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,274评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,488评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,649评论 1 347
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,378评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,979评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,625评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,796评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,643评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,545评论 2 352

推荐阅读更多精彩内容

  • --绘图与滤镜全面解析 概述 在iOS中可以很容易的开发出绚丽的界面效果,一方面得益于成功系统的设计,另一方面得益...
    韩七夏阅读 2,720评论 2 10
  • 一、分类视图 MATLAB各个类别内的产品之间是有相互依赖关系的,所以有时不能单单取消某一个产品的安装。如果不需要...
    顽强的猫尾草阅读 16,064评论 1 11
  • 目渐裂空雷电,心牵血脉雕瓷。铸成木偶夜无知。神提头骨线,放我进君词。 此夜必无寂寞,小生与你深思。嗔嗔奇异让人痴。...
    秋正阅读 219评论 0 0
  • 儒书生阅读 98评论 0 0
  • 从第42页到第57页 讲的是:咱们都看见过钟,看见过表。咱们都懂得中和表在提醒咱们:现在是什么时间了,你应当起床了...
    四班丁川阅读 338评论 0 0