问一个关于measurement studio的问题
时间:12-13
整理:3721RD
点击:
我在vc中使用measurement studio过程中,不知道怎么把measurement studio中的变量转
换为vc中的变量,比如怎么能把CNiReal64Vector类型的数据转换到double类型。
谢谢
.17
换为vc中的变量,比如怎么能把CNiReal64Vector类型的数据转换到double类型。
谢谢
.17
强制转换为double指针. (double *)()
帮助里面就有.
Declaration: inline operator const DataType*()const
Description: Casts the underlying vector data to a const pointer of the templa
tized data type
.70