Re: [Q] compiling error [message #5787] |
Thu, 08 February 1996 00:00 |
David Foster
Messages: 341 Registered: January 1996
|
Senior Member |
|
|
stu wrote:
> Could anybody help me with the following problem in compiling IDL.pro.
> I know IDL just a few weeks, and then try to use & compile ready made
> free software. But I can't solve it.
>
> Thank
> Irawan.
> ----------------------
>
> IDL> .run correl_o.pro
> corrmat = correl_images( image_A, image_B, XOFF=xoff,YOFF=yoff,$
> ^
It looks like the compiler doesn't know that CORREL_IMAGES is a
function, and is treating it like an array. Make sure that your
listing of CORREL_IMAGES in your file comes before your function
calls, so that it is compiled before you call it.
Dave Foster
UCSD Brain Image Analysis Lab
foster@bial1.ucsd.edu
|
|
|