Christian Wimmer
Christian Wimmer
Any chance to allow more than 100 windows in GDL? In GDL we are limited to 69 "free" windows: ``` GDL> for i=0,200 do window,/free % WINDOW: No more window...
The error message says all: % Warning: Keyword parameter SHADES not supported in call to: SHADE_SURF. Ignored. Any chance to implement this?
GDL>loadct,41,file='myowntable.tbl' % LOADCT: FILE keyword not implemented yet, ignored. (FIXME)
Anybody can confirm this bug? ``` GDL> print,strsplit('{B}','{',/regex) % STRTOK: Error processing regular expression: { Invalid preceding regular expression. % Error occurred at: STRSPLIT 92 strsplit.pro ``` ``` IDL> print,strsplit('{B}','{',/regex)...
Why the user luns are not shown? ``` bash$ touch eraseme bash$ idl IDL> openr,1,'eraseme' IDL> help,/files Unit Attributes Name 1 Read eraseme IDL> exit bash$ gdl GDL> openr,1,'eraseme' GDL>...
I had some wonderful key definitions in IDL that helped me a lot to speed up things: ``` GDL> DEFINE_KEY, 'F10','window,/free',/terminate % Procedure not found: DEFINE_KEY % Execution halted at:...
I am testing the version 1.0.5 with shmmap and heavy load. Sharing variables with approx. 5GB in size to 16 CPU cores using shmmap. Everything works very nice on Suse...
I wrote sometimes because if I cal lit several times it finishes successfully. What could it be? ``` during GIMPLE pass: slp In file included from /home/linux/Downloads/gdl-v1.0.4/src/GDLLexer.hpp:10, from /home/linux/Downloads/gdl-v1.0.4/src/dinterpreter.hpp:30, from...
I am trying to compile the latest version on: ``` Linux proc001 4.19.0-6-amd64 #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11) x86_64 GNU/Linux ``` and get following compilation errors: ``` [ 21%] Building...
When addressing any not existing variable during debugging of a program causes confusion. The only way to continue is to create that variable with any contents. Any way to resolve...