Modular Data Acquisition
Distributed Measurement and Control
High-Performance Test
Automated Test System Development Software
Perspectives showcases how NI sees what’s next in the world of test and technology.
You can request repair, RMA, schedule calibration, or get technical support. A valid service agreement may be required.
Provides support for NI data acquisition and signal conditioning devices.
Provides support for Ethernet, GPIB, serial, USB, and other types of instruments.
Provides support for NI GPIB controllers and NI embedded controllers with GPIB ports.
我有一个数组,我想一次一个元素传送到LabVIEW公式节点。不幸的是,公式节点需要单个数值而不是数组。有什么办法可以将数组索引到公式节点中吗?
您需要从公式节点中访问该数组。例如,您可以使用以下代码在公式节点中访问数组。关于具体示例,请参阅下面的代码段。
int32 i,j,n; float64 x; n=sizeOfDim(a,0)-1; do { i=0; for(j=0;j<n;j++) if(a[j]> a[j+1]) { x=a[j]; a[j]=a[j+1]; a[j+1]=x; i=1; } }while(i);
在我们的论坛中与其他用户协作
可能需要有效的服务协议或有效的软件订阅,同时支持选项因国家/地区而异
Yes
No