Tagged Questions

Interactive Data Language, a programming language used primarily for scientific and medical image analysis.

learn more… | top users | synonyms

5
votes
5answers
800 views

Python equivalent of IDL's stop and .reset

I'm relatively new to python but have a bit of experience using IDL. I was wondering if anyone knows if there are equivalent commands in python for IDL's stop and .reset commands. If I'm running some ...
3
votes
13answers
4k views

Interactive Data Language, IDL: Does anybody care? [closed]

Anyone use a language called Interactive Data Language, IDL? It is popular with scientists. I think it is a poor language because it is proprietary (every terminal running it has to have an ...
2
votes
1answer
208 views

Reading unformatted data into 4D array in Matlab (vs IDL)

I have a .img file of unformatted (I think binary) data that I want to read as floats into a 4D array in Matlab. I noticed that the 'fread' function in Matlab used to read binary data can only read ...
2
votes
2answers
428 views

define array name within a loop

I may be going about this the wrong way, but I'm trying define and fill arrays within a loop. for i = 0,39 do begin xx = long(findgen(n+1l)*sx + line1x[i]) sz = size(xx) arrayname = 'line' + ...
1
vote
2answers
121 views

reading a binary file in python

I have to read a binary file in python. This is first written by a Fortran 90 program in this way: open(unit=10,file=filename,form='unformatted') write(10)table%n1,table%n2 write(10)table%nH ...
1
vote
2answers
87 views

Using the spawn command inside of IDL

I'm very new to IDL (trying to do a POC for someone using it) and I am trying to run an external command. The line of code I have added is this: spawn, 'C:\Program ...
1
vote
1answer
52 views

Converting variable to FID for image in ENVI+IDL?

I'm beginning to use ENVI+IDL (most of this relates to IDL, I think, in case you know one but not the other) at work, completely new to both. Since ENVI isn't an existing tag, I'll explain that it's ...
1
vote
1answer
199 views

IDL: Can I get the coordinates of a point on my plot's cartesian plane?

I have a plot like this: http://i.imgur.com/i9xp5.png I need the data coordinates of points in order to plot wind barbs. Now, if I wanted a wind barb to be drawn at x=100, y=20, is there a way I can ...
1
vote
2answers
514 views

IDL: Can IDL add a colorbar/other legend info below a contour plot, so that it doesn't overlap anything?

I am using a map_set call to draw a map, and then using contour to plot some data on top of it. I want to add a legend to this plot to make it useful, but it would have to be below the entire plot, ...
1
vote
1answer
643 views

IDL: Accessing struct fields using field names stored in variables?

If I have a struct with a fieldname 'fieldname', is it possible to access the data in that field using only the variable? ie. x = 'fieldname' is it possible to do data = struct.(x) in some way? I ...
1
vote
1answer
882 views

How to declare variables in for loop? (IDL)

For example, My files are naming after 00.dat, 01.dat, 02.dat..., each file contains multiple columns and I use READCOL to read them into variables. for i = 0, n-1 do begin readcol, string(i, ...
0
votes
0answers
34 views

IDL spawn not recognising path variables

I'm currently using the SPAWN command to attempt to execute a unix command. If I were simply executing it in the terminal, I would write the following (which works, by the way!): fslascii2img ...
0
votes
1answer
30 views

Defining an IDL class with an array of unknown size as a member variable

I'm relatively new to IDL, so I'm sure what I want to do is actually quite trivial! I'm creating a class with a few member variables. Two of these will just be floats, but the third I would like to ...
0
votes
1answer
47 views

IDL: How to plot simple 2d plot in iplot

Reading from an example (created 2009), I have created a .dat file called temperature_vs_current.dat with 2 columns of data. The example says I should then read the file into IDL via IDL> iplot, ...
0
votes
1answer
142 views

Plotting with scientific notation in IDL

I would like to know if it is possible ( and how to ) plot numbers in scientific notation (e.g. 4e2 instead of 400) while plotting diagrams with IDL's plot package.
0
votes
0answers
58 views

Sparse matrix and linbcg in IDL

I'm wondering if there is a limit on the size of a sparse matrix you can use in IDL. I am initializing a 63876x63876 sparse matrix using A= SPRSIN(Columns, Rows, Values, N [, /DOUBLE] [, ...
0
votes
1answer
45 views

Problem with file_lines() function?

I am having issues with the file_lines() function in IDL. I have a ASCII data file which has 27000 lines as I have verified within an emacs buffer and using the command grep -c "."; however, ...
0
votes
1answer
86 views

how to put a byte string into a float in IDL

I am new to the programming language IDL (Interactive Data Language) and am learning to code in it. I'd like to know how to put a byte string into a float in IDL without saving it to a file. Any help ...
0
votes
1answer
85 views

How do you label output variables in an IDL FOR loop for further processing outside the loop in the same program?

I have a FOR loop like this: FOR k = 1,216 DO atom = G[*,0:*:(215+k)] END What I would like to be able to do is to store in memory the array for each atom, say, atom_k and then call these ...
0
votes
1answer
354 views

Why is IDL adding it's own tick marks to my custom plot tick marks?

I'm trying to specify custom Y axis tick marks, but IDL is not cooperating. http://i.imgur.com/BFqMO.png In the top left, 1.0000 should be the max value, but IDL puts a 57 there. 57 is the max ...
0
votes
1answer
478 views

Can IDL create a contour plot colorbar like this?

At the bottom of this image, you'll see a nice colorbar that matches the colors of the graph correctly: http://stribog.cc.umanitoba.ca/ceos/20100517_00z_prod/ I couldn't find anything that created a ...
0
votes
1answer
243 views

Can IDL evaluate strings as code?

Is there any functionality in IDL that will allow it to evaluate a a string as code? Or, failing that, is there a nice, dynamic way of including /KEYWORD in functions? For example, if I wanted to ask ...
-1
votes
1answer
121 views

Chances of IDL in Image processing

I am a software engineer working in Medical Imaging.I have just started using the language IDL and i feel very comfortable with it.As a new member in this field with a language like IDL, i would like ...