我试图在 IDL 中创建多个条件 while 循环但没有成功。例如:
while (delta_flux gt 1.0) or (lt -1.0) do begin
;something here...
endwhile
返回:
IDL> .run flare_finder_while_attempt5.pro
while (delta_flux gt 1.0) or (lt -1.0) do begin
^
% Syntax error.
有没有办法做到这一点?