-
大小: 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
相关资源
-
Temporal-ba
sed Multi-Strokes Sketchy Graphi - Labwindows/CVI下Excel打开、读写操作
- Qt图片浏览器 --基于Qt的Graphics View f
- Mentor Graphics Expedition Enterprise v7.9.5.r
- Graphics Magic图像处理魔术师,含Delph
- ArangoDB vs. JanusGraph vs. Neo4j vs. OrientDB
- On distance signless Laplacian spectral radius
- Facile low-temperature synthesis of graphene-C
- Graph And Chart 1.91.unitypackage
- 2019-07-20 首届事理图谱研讨会.zip
- Graph Algorithms:Practical Examples in Apach
- 基于深度学习的图像超分辨率算法论
- GetDataGraphDigitizer
- AUSPLINE 插值程序 arcview插件
- Analysis of Sulfamerazine in Pond Water and Se
- cartographer-master-19.zip
- getdatagraphdigitizer破解版
- graph数学软件
- S7 GRAPH编程手册
- Getting Started with the Graph Template Langua
- QGraphicsView框架实现画板
- 西门子PLCSFC手册
- Introduction to Graph Theory Richard J. Trudea
- eetop.cn_OpenCL.Parallel Computing on the GPU
- Structural Pattern Recognition with Graph Edit
- PDFXCview破解版
- Coyote’s Guide To:Traditional IDL Graphics:U
- 基于图切算法的交互式图像分割技术
- Introduction to Modern Cryptography 2nd
- Practical Graph Analytics with Apache Giraph(
评论
共有 条评论