Write-only |
Description |
Saves uncertainty data for the specified ports in three different formats. |
VB Syntax |
data = uncert.WriteUncertaintyFile ports, filename |
Variable |
(Type) - Description |
data |
(Variant) array to store the data. |
uncert |
An Uncertainty (object) |
ports |
(Variant Array) One dimensional array containing a list of port numbers for which data is requested. |
filename |
(string) - Path, filename, and suffix of location to store the uncertainty data, enclosed in quotes. The suffix is not checked for accuracy.
|
Return Type |
Not Applicable |
Default |
Not Applicable |
Examples |
'This VBScript example can be pasted into a notepad file and run on the VNA as a macro. Learn how. Dim app As AgilentPNA835x.Application 'List the port numbers for required data ports = Array(1,2) 'specify where to save the data and data suffix 'remove comment for one of the following: filename="D:\MyData.u2p" 'filename="D:\MyData.dsd" 'filename="D:\MyData.sdatcv" OUncert.WriteUncertaintyFile ports,filename
|
C++ Syntax |
HRESULT WriteUncertaintyFile(VARIANT portsToMeasure,BSTR filename); |
Interface |
IUncertainty |