变量对象,CDF文件之中的实验数据之类的数据都是保存于这个对象之中的
variable
01 Syntax
Microsoft.VisualBasic.DataStorage.netCDF.Components.variable
02 Methods
| Name | Overloads | Summary |
|---|---|---|
| FindAttribute | 1 |
03 Properties
| Name | Overloads | Summary |
|---|---|---|
| name | 1 | String with the name of the variable |
| dimensions | 1 | Array with the dimension IDs of the variable. |
| attributes | 1 | Array with the attributes of the variable |
| type | 1 | String with the type of the variable |
| size | 1 | Number with the size of the variable.(在文件之中的数据字节大小) |
| offset | 1 | Number with the offset where of the variable begins |
| record | 1 | True if Is a record variable, false otherwise |
| value | 1 | 惰性求值的属性 |
| dimensionality | 1 |
04 Members
name
String with the name of the variable
dimensions
Array with the dimension IDs of the variable. (Header.dimensions)
Remarks
Dimension ID (index into dim_list) for variable shape. We say this Is a "record variable" if And only if the first dimension Is the record dimension.
attributes
Array with the attributes of the variable
type
String with the type of the variable
size
Number with the size of the variable.(在文件之中的数据字节大小)
Remarks
Variable size. If not a record variable, the amount of space in bytes allocated to the variable's data.
offset
Number with the offset where of the variable begins
record
True if Is a record variable, false otherwise
value
惰性求值的属性
dimensionality
FindAttribute(
String)