“结构”的版本间差异
跳到导航
跳到搜索
无编辑摘要 |
|||
第1行: | 第1行: | ||
== |
==结构(数组的修改)== |
||
[[sdssidl]]里面有一组程序,可以增加,删除,重命名结构的Tag,且完全适用于结构数组 |
|||
===重命名Tags:rename_tags=== |
|||
newstruct = rename_tags(struct, oldtagnames, newtagnames) |
|||
===增加Tags: add_tag和add_tags=== |
|||
*add_tag 一次增加一个tag |
|||
add_tag, oldstruct, tagname, tagtype, newstruct, structyp=structyp |
|||
structyp: a string with the name of the new structure. f already defined the program will crash. |
|||
*add_tags 可以同时增加多个Tag |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
===删除Tags: remove_tags=== |
|||
newstruct = remove_tags(oldstruct, tagnames) |
|||
*可以同时移除多个Tags,tagname是个数组即可 |
|||
==其它== |
|||
*结构很容易增加一个tag,比如 |
*结构很容易增加一个tag,比如 |
||
A= {tag1:0.,tag2:'Name'} |
A= {tag1:0.,tag2:'Name'} |
||
B=create_struct(A,'tag3',1L) |
B=create_struct(A,'tag3',1L) |
||
但是如果A是结构数组了,就不能再这样操作。 |
|||
结果数组经常被用来读入数据文件,如果该数据文件加上一列数据,如何较方便的操作。 |
*结果数组经常被用来读入数据文件,如果该数据文件加上一列数据,如何较方便的操作。 |
||
:一种方法如下: |
:一种方法如下: |
||
A= {tag1:0.,tag2:'Name'} |
A= {tag1:0.,tag2:'Name'} |
||
第26行: | 第42行: | ||
ref_str = create_struct(ref_str, 'c' ,make_array(10)) |
ref_str = create_struct(ref_str, 'c' ,make_array(10)) |
||
help, ref_str, /str |
help, ref_str, /str |
||
:sdssidl中的add_tags程序 |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
IDL> struct = {a: 0., b: 'blah'} |
|||
IDL> a=replicate(struct,2) |
|||
IDL> c=jjadd_tag(a,'new',0b) |
2014年12月16日 (二) 09:05的版本
结构(数组的修改)
sdssidl里面有一组程序,可以增加,删除,重命名结构的Tag,且完全适用于结构数组
重命名Tags:rename_tags
newstruct = rename_tags(struct, oldtagnames, newtagnames)
增加Tags: add_tag和add_tags
- add_tag 一次增加一个tag
add_tag, oldstruct, tagname, tagtype, newstruct, structyp=structyp
structyp: a string with the name of the new structure. f already defined the program will crash.
- add_tags 可以同时增加多个Tag
- 参见jadd_tag的程序[1]
tagnames=['ra', 'dec', 'image', 'name'] values =['0d', '0d', 'intarr(1000, 1000)', "'NGC3035'"] add_tags, oldstruct, tagnames, values,new_struct
删除Tags: remove_tags
newstruct = remove_tags(oldstruct, tagnames)
- 可以同时移除多个Tags,tagname是个数组即可
其它
- 结构很容易增加一个tag,比如
A= {tag1:0.,tag2:'Name'} B=create_struct(A,'tag3',1L)
- 结果数组经常被用来读入数据文件,如果该数据文件加上一列数据,如何较方便的操作。
- 一种方法如下:
A= {tag1:0.,tag2:'Name'} B= {tag1:1.,tag2:'Name2',tag3:10L} A2= replicate(A,10) B2 = replicate(B,10) struct_assign,A,B ;把A的数值付给B print,B ;可以看到B的前两列已经变成A的数值,但B的第三列被充0,所以这时候可以再给B.tag3赋值。
- 还有一种方法,但没上面那么直观
str={a: 0l, b: } str_arr=REPLICATE(str,10) ref_str = reform_struct(str_arr, /tag_array, 10) ref_str = create_struct(ref_str, 'c' ,make_array(10)) help, ref_str, /str