Presentation is loading. Please wait.

Presentation is loading. Please wait.

IDL Tutorials: Day 4 Goal: Learn some programming techniques: Relational operators, conditional statements, boolean operators, loops Maria Kazachenko

Similar presentations


Presentation on theme: "IDL Tutorials: Day 4 Goal: Learn some programming techniques: Relational operators, conditional statements, boolean operators, loops Maria Kazachenko"— Presentation transcript:

1 IDL Tutorials: Day 4 Goal: Learn some programming techniques: Relational operators, conditional statements, boolean operators, loops Maria Kazachenko (kazachenko@physics.montana.edu)

2 Relational Operators Relation operators test the relationships between two arguments Relation operators test the relationships between two arguments Relation operators return 1 if they are true, 0 if false Relation operators return 1 if they are true, 0 if false Can be used on strings; also there are special functions for comparing strings Can be used on strings; also there are special functions for comparing strings Common R.O’s Common R.O’s - eq ; equal to - ne ; not equal to - lt ; less than - gt ; greater than - ge ; greater than or equal to - le ; less than or equal to Syntax: Arg1 R.O. Arg2 Syntax: Arg1 R.O. Arg2 IDL> print, 1 gt –1> print, array_1 le array_2

3 If Statements One type of statement that allows program to make decisions One type of statement that allows program to make decisions If statements use R.O.’s as a condition. If the R.O returns 1 (true) then the statement executes If statements use R.O.’s as a condition. If the R.O returns 1 (true) then the statement executes An optional else statement can be included, giving an option to do something if the R.O. returns 0 (false) An optional else statement can be included, giving an option to do something if the R.O. returns 0 (false) Syntax: Syntax: IF condition THEN something Examples: Examples: If x ge y then print, x If x ge y then print, x If x gt y then biggest= x else biggest=y If x gt y then biggest= x else biggest=y IF n_params() lt 1 then print, ‘you need a parameter’ IF n_params() lt 1 then print, ‘you need a parameter’

4 Loops Loops allow for actions to occur repeatedly Loops allow for actions to occur repeatedly Usual syntax is Usual syntax is conditional_statement BEGIN do something do_something_else endstatement; Many types of loops Many types of loops -for loops -while loops -repeat loops * If you’re not careful your loop might not end. If you make an infinite loop CTRL+C can be used to break out of it.

5 Blocks A block is a group of statements that are treated as a single statement A block is a group of statements that are treated as a single statement Blocks and Common Blocks are different things Blocks and Common Blocks are different things Blocks usually begin with the word BEGIN and end with a particular end-statement depending on what statement the block is contained in. Blocks usually begin with the word BEGIN and end with a particular end-statement depending on what statement the block is contained in. IF (R.O) then BEGIN …. Statements … ENDIFor FOR index = 0, n_elements(array) DO BEGIN … statements … ENDFOR

6 For Loop Syntax and Examples For statements repeat a statement until a counter reaches an assigned value For statements repeat a statement until a counter reaches an assigned value The the counter is automatically advanced by one after each step The the counter is automatically advanced by one after each stepSyntax: > FOR counter=value, number DO statement or > FOR counter=value, number DO BEGIN … statements > ENDFOR Examples: > FOR counter=0,10 DO print, cos(((2*!pi)/10)*counter) > FOR index=0, n_elements(array)-1 DO BEGIN > array[*,index]=cos(array_3[index,*]) > ENDFOR

7 While Loop Syntax and Examples While loops repeat until some conditional statement is met While loops repeat until some conditional statement is metSyntax > WHILE condition DO statement or > WHILE condition DO BEGIN …statements… > ENDWHILE Examples: > WHILE x ge y DO x=x-5 > WHILE x lt y DO BEGIN > x=x+5 > print, x > ENDWHILE

8 Repeat Loop Syntax and Examples Repeat loops repeat until some conditional statement is met Repeat loops repeat until some conditional statement is met Difference between repeat and while loops is the location of the conditional statement Difference between repeat and while loops is the location of the conditional statementSyntax: > REPEAT statement UNTIL condition or or > REPEAT BEGIN > … statements… > ENDREP UNTIL condition Examples: > REPEAT x=x-5 UNTIL x lt y > REPEAT BEGIN >x=x+5 > print, x > ENDREP UNTIL x gt y

9 Boolean Operators Boolean operators can be used to make complex groupings of conditional statements Boolean operators can be used to make complex groupings of conditional statements e.g. if (x lt y) and (x lt z) then print, ‘x is small’ There are four basic boolean operators There are four basic boolean operators - and; returns true when both of it’s operands are true > print, (1 lt 2) and (1 lt 3) ; IDL prints 1 > print, (1 lt 2) and (1 gt3) ; IDL prints 0 - or; Returns true when either of it’s operands are true > print, (1 lt 2) or (1 gt 3) ; IDL prints 1 > print, (1 gt 2) or (1 gt 3); IDL prints 0 - not; Boolean inverse operator - xor; boolean exclusive or function. Only good for certain data types. * Just about any logic making steps you need can be made with if’s or’s and and’s.

10 “Homework” Find some example programs (just use xdoc if you don’t know any) and browse through the code looking for blocks. When you see loops or if, then statements, find where they begin and end. Can you see how the program works? Find some example programs (just use xdoc if you don’t know any) and browse through the code looking for blocks. When you see loops or if, then statements, find where they begin and end. Can you see how the program works? Come up with a simple problem that you can solve using the logic and/or loop statements you learned today. Write a program (procedure or function) that solves/displays the problem. Be prepared to share your program and run it in class tomorrow (it needs to “live” somewhere I can access it). Come up with a simple problem that you can solve using the logic and/or loop statements you learned today. Write a program (procedure or function) that solves/displays the problem. Be prepared to share your program and run it in class tomorrow (it needs to “live” somewhere I can access it).


Download ppt "IDL Tutorials: Day 4 Goal: Learn some programming techniques: Relational operators, conditional statements, boolean operators, loops Maria Kazachenko"

Similar presentations


Ads by Google