我想使用带有C++代码的Visual Studio创建一个绘图图。该图表应基于两个轴。 “x”轴显示时间,“y”轴显示阵列数据。数组数据有100个元素,在一秒内读取了一个数据。如何使用其他图形库实现代码?

最佳答案

1) check out 并将Microsoft vcpkg安装到新文件夹(请参阅此处的1步说明:https://github.com/Microsoft/vcpkg)

2) vcpkg.exe从vcpkg文件夹安装plplot

3) vcpkg.exe集成项目将为您提供将plplot添加到您的MSVC项目的说明

4)将此指令粘贴到Nuget控制台:

c++ - 如何使用Visual Studio C绘制绘图图-LMLPHP

5)粘贴并重新加载项目后,可以尝试以下代码:

#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <cstring>
#include <cmath>
#include "plplot\plstream.h"
using namespace std;
const int NSIZE = 101;
int main(int argc, char ** argv) {
    PLFLT x[NSIZE], y[NSIZE];
    PLFLT xmin = 0., xmax = 1., ymin = 0., ymax = 100.;
    int   i;
    for (i = 0; i < NSIZE; i++) {
        x[i] = (PLFLT)(i) / (PLFLT)(NSIZE - 1);
        y[i] = ymax * x[i] * x[i];
    }
    auto pls = new plstream();
    plsdev("wingcc");
    pls->init();
    pls->env(xmin, xmax, ymin, ymax, 0, 0);
    pls->lab("x", "y=100 x#u2#d", "Simple PLplot demo of a 2D line plot");
    pls->line(NSIZE, x, y);
    delete pls;
}

你会得到:

c&#43;&#43; - 如何使用Visual Studio C绘制绘图图-LMLPHP

在MSVC2015上测试

关于c++ - 如何使用Visual Studio C绘制绘图图,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44448010/

10-11 21:25