[Top] [Prev] [Next] [Bottom]
SDsetattr/sfsnatt/sfscatt
intn SDsetattr(int32 [file, sds, dim]_id, char *attr_name, int32 data_type, int32 count, VOIDP values)
int32 range[2];
int32 sds_id;
int32 status;
...
sds_id = SDcreate...;
...
range[0] = 5;
range[1] = 100;
status = SDsetattr(sds_id, "valid_range", DFNT_INT32, 2, range);
FORTRAN
|
integer function sfsnatt([file, sds, dim]_id, attr_name, data_type, count, values)
|
|
character* (*) attr_name
|
|
integer [file, sds, dim]_id, data_type, count
|
|
<valid numeric data type> values(*)
|
|
|
|
integer function sfscatt([file, sds, dim]_id, attr_name, data_type, count, values)
|
|
character* (*) attr_name, values
|
|
integer [file, sds, dim]_id, data_type, count
|
[Top] [Prev] [Next] [Bottom]
hdfhelp@ncsa.uiuc.edu
HDF User's Reference Manual, Draft 06/09/97, NCSA HDF
Development Group.