JMP 14.2 联机文档
发现 JMP
使用 JMP
基本分析
基本绘图
刻画器指南
实验设计指南
拟合线性模型
预测和专业建模
多元方法
质量和过程方法
可靠性和生存方法
消费者研究
Scripting Guide
JSL Syntax Reference
该帮助的版本不再更新,请参见
https://www.jmp.com/support/help/zh-cn/15.2
获取最新的版本.
Scripting Guide
•
Extending JMP
• Real-Time Data Capture on Windows
上一个
•
下一个
Real-Time Data Capture on Windows
A data feed is a real-time method to read data continuously, such as from a laboratory measurement device connected to a serial port. A data feed object sets up a concurrent thread with a queue for input data lines that arrive in real time and are processed with background events. You set up scripts to interpret the data lines and push the data to data tables, or do whatever else your process requires.
For example, submit this to get records from com1: and list them in the log.
feed =
Open Datafeed
(
Connect( Port(
"com1:"
), Baud(
9600
), DataBits(
7
) ),
Set Script(
Print
( feed <<
GetLine
) )
);
图 14.1
A Datafeed Window Shows the Status and Offers Controls