Spectral Index in IRAF


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Spectral Index in IRAF
# 1  
Old 05-26-2010
Error Spectral Index in IRAF

Dear all,
I want to find the spectral Index from the reduced spectra of various molecular bands like TiO (band width 7042 angstrom-7046 angstrom) in the in IRAF. I have reduced the spectra in IRAF but now I don't know how to find these band strength (spectral indices) in IRAF.

can some one help me how to do this in IRAF
 
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need Help in Index

I am having data in XML format and trying to extract codes form two fields called <String>, below is the data. <Node>tollfree<Condition>BooleanOperator<Operation>AND</Operation><Condition>BooleanOperator<Operation>NOT</Operation><Condition>FieldSelection<Field Context="ALL fields"... (7 Replies)
Discussion started by: rramkrishnas
7 Replies

2. Shell Programming and Scripting

Get index value by awk

HI All, I would like to pass a integer and get all values under this index the by using awk. Could anyone help? Thanks :> input: 1,2,3,4,5,6,7 1,2,3,48,5,6,7 1,2,3,4,5,6,7 e.g. i pass 4 to awk command output: 4 48 4 Video tutorial on how to use code tags in The UNIX and Linux... (8 Replies)
Discussion started by: mimilaw
8 Replies

3. Shell Programming and Scripting

awk index

1 2 000060000 How do i return the point in the string where the 6 is? i.e what I want on output is 1 2 5 something like awk '{print $1 $2 index($3,6) }' but I can't get it to work Thanks in advance (3 Replies)
Discussion started by: garethsays
3 Replies

4. Shell Programming and Scripting

Sort from start index and end index in line

Hi All, I have a file (FileNames.txt) which contains the following data in it. $ cat FileNames.txt MYFILE17XXX208Sep191307.csv MYFILE19XXX208Sep192124.csv MYFILE20XXX208Sep192418.csv MYFILE22XXX208Sep193234.csv MYFILE21XXX208Sep193018.csv MYFILE24XXX208Sep194053.csv... (5 Replies)
Discussion started by: krish_indus
5 Replies

5. UNIX for Dummies Questions & Answers

wh inode index starts from 1 unlike array index (0)

brothers why inode index starts from 1 unlike array inex which starts from 0 its a question from the design of unix operating system of maurice j.bach i need to know the answer urgently...someone help please (1 Reply)
Discussion started by: sairamdevotee
1 Replies

6. Filesystems, Disks and Memory

why the inode index of file system starts from 1 unlike array index(0)

why do inode indices starts from 1 unlike array indexes which starts from 0 its a question from "the design of unix operating system" of maurice j bach id be glad if i get to know the answer quickly :) (0 Replies)
Discussion started by: sairamdevotee
0 Replies

7. Shell Programming and Scripting

What is index?

hi, :) In a shell script i came accross the following lines 1.for i in ` find /home/oracle -name ch' 2.do 3.echo $i 4.idx=`expr index $i .` 5.done Here iam not able to understand the porpose of the word "index" in line 4. any help ? cheers RRK (3 Replies)
Discussion started by: ravi raj kumar
3 Replies
Login or Register to Ask a Question
TM::Index::Reified(3pm) 				User Contributed Perl Documentation				   TM::Index::Reified(3pm)

NAME
TM::Index::Reified - Topic Maps, Indexing support (reification axis) SYNOPSIS
# somehow get a map (any subclass of TM will do) my $tm = ... # one option: create an eager index (immediate population) use TM::Index::Reified; my $idx = new TM::Index::Reified ($tm, closed => 1); # for most operations which involve is_reified to be called # should be much faster DESCRIPTION
This index can be attached to a map if the method "is_reified" is about to be called very often. Most likely you will want to have the index to be closed, i.e. populated. The package inherits most of its functionality from TM::Index. NOTE: As for all indices, modifications of the underlying map are not reflected automatically. INTERFACE
Constructor The constructor/destructor is inherited from TM::Index. Methods attach, detach This index attaches in a special way to the map. populate Invoking this, you will fill this index with authoritative information. SEE ALSO
TM, TM::Index COPYRIGHT AND LICENSE
Copyright 2010 by Robert Barta, <drrho@cpan.org> This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.10.1 2010-07-07 TM::Index::Reified(3pm)