• 大小: 460KB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2021-01-01
  • 语言: 其他
  • 标签: labwindows  cvi  graph  

资源简介

使用过CVI的人都知道,CVI中有两种波图控件:Graph和StripChart。 其中StripChart是专门用来显示实时波形的,其波形可以连续滚动显示,但缺点是波图中最多只能承载10K个采样点,超过的部分将从控件左端滚动出去。而Graph控件是专业显示静态波形的,它不限采样点数(有多少个都可以显示),同时还能鼠标取值、放大缩小等等。 本例是使用Graph控件模仿StripChart来使用。

资源截图

代码片段和文件信息

#include “toolbox.h“
#include 
#include 
#include “graph.h“

#define AXIS_X_MAX 30
static int panelHandle;

double x1 = 0;
double y1 = 0;

double cx = 0; 

int mFlage=0;
int plotHandle[10000];
int plotCount=0;
int plotdelCount=0;
int gn=0;
int main (int argc char *argv[])
{
if (InitCVIRTE (0 argv 0) == 0)
return -1; /* out of memory */
if ((panelHandle = LoadPanel (0 “graph.uir“ PANEL)) < 0)
return -1;
DisplayPanel (panelHandle);

//向Graph中添加一个十字光标
SetCtrlAttribute (panelHandle PANEL_GRAPH ATTR_NUM_CURSORS 1);

RunUserInterface ();
DiscardPanel (panelHandle);
return 0;
}

int CVICALLBACK GraphCallback (int panel int control int eventvoid *callbackData int eventData1 int eventData2)
{
switch (event)
{

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      12426  2014-08-07 16:06  graph.prj

     文件       3988  2014-08-07 16:39  graph.uir

     文件        128  2014-04-17 12:50  说明.txt

     文件       3546  2014-08-07 17:30  cvibuild.graph\build.ini

     文件     739840  2014-08-07 17:05  cvibuild.graph\Debug\graph.exe

     文件     125882  2014-08-07 17:05  cvibuild.graph\Debug\graph.nidobj

     文件     302048  2014-08-07 17:05  cvibuild.graph\Debug\resources.res

     文件        144  2014-08-07 17:05  cvibuild.graph\dependencies.bri

     文件       3175  2014-08-07 17:05  graph.c

     文件    1132864  2014-08-07 17:05  graph.cdb

     文件       4822  2014-08-07 17:05  graph.cws

     文件     739840  2014-08-07 17:05  graph.exe

     文件       2014  2014-08-07 16:39  graph.h

     目录          0  2014-08-07 17:05  cvibuild.graph\Debug

     目录          0  2014-08-07 17:30  cvibuild.graph

----------- ---------  ---------- -----  ----

              3070717                    15


评论

共有 条评论