Performing Map Calculations on GRASS Data:
|
|
|
- Peter Owen
- 9 years ago
- Views:
Transcription
1 - Performing Map Calculations on GRASS Data: r.mapcalc Program Tutorial Marji Larson Michael Shapiro Scott Tweddale U.S. Army Corps of Engineers Construction Engineering Research Laboratory Environmental Division Spatial Analysis Systems Team P.O. Box 9005 Champaign, IL December 1991
2 - 2 - Table of Contents Table of Contents Introduction Orientation Syntax Sample Session/Examples Conclusions and Recommendations... References
3 -3-1. INTRODUCTION 1.1. Background This document details the capabilities of r.mapcalc, a program that allows users to manipulate, analyze, and create map data by performing mathematical calculations on raster map layers. It is included among Geographic Resources Analysis Support System (GRASS) software. GRASS is a public domain, image processing, and geographic information system (GIS) originally developed by researchers in the Environmental Division of the U.S. Army Corps of Engineers Construction Engineering Research Laboratory (USACERL-EN) in Champaign, Illinois. The system is used to input, manipulate, analyze, and output geographic data by users in both military and non-military and public and private agencies based in North America, Europe, and other parts of the world. Although most GRASS development has been conducted at USACERL, system integration, develop- ment, testing, distribution, training, and support is performed by numerous publiclyanprivately- operated sites throughout the world. GRASS version 4.0 implemented significant additions and modifications to system libraries and programming code. Mechanisms are needed to transfer current technology and information about GRASS to user and development sites. This document reflects modifications made to GRASS version 4.0 and guides the user through the con- struction of raster map analyses using r.mapcalc Objective The objective of this work is to transfer knowledge of GRASS version 4.0 raster map analysis functions to the field. This document guides the user through the process of using r.mapcalc to manipulate, create, and analyze raster data layers in GRASS using mathematical expressions Approach Current GRASS r.mapcalc functions are examined in this report Scope This document discusses the 4.0-release version of the GRASS r.mapcalc program, completed in the Summer of Some elements of this document will be dated and inaccurate for post-4.0 software releases Mode of Technology Transfer The information in this report will aid the technical transfer of USACERL s GRASS image processing and geographic information system. GRASS is being transferred to the field through the following mechanisms: training programs, hands-on experience, a user support center, newsletters, extensive documentation, institutional structures at the Army and interagency levels, communication networks, and other forums. User feedback on GRASS program capabilities, documentation, and other technology transfer mechan- isms is important to the development of the system. Users are encouraged to communicate such feed- back to GRASS development staff at USACERL, via existing electronic communication networks and via the GRASS Information Center at USACERL, P.O. Box 9005, Champaign, IL ; phone ; fax ; or [email protected].
4 ORIENTATION This paper describes the use and syntax of the GRASS software tool r.mapcalc. This tool uses mathematical syntax to perform analyses on existing map layers within GRASS. It allows a user to create a new map layer which is the result of a mathematical expression which may contain raster map layer names, integer or floating point constants, and known mathematical functions. r.mapcalc is designed to act as a calculator for maps. Mathematical calculations are performed for each grid cell of a raster map layer, applying the mathematical functions supplied by the user. It is assumed that the reader is familiar with the meanings of raster data format, map layers, the current mapset and location, regions, and masks in GRASS. These and other basic GRASS concepts are reviewed in the GRASS hard copy and on-line help facility (accessible through g.help), in the GRASS Programmer s Manual (Shapiro et al., 1992), and in other GRASS documents available through the GRASS Information Center at USACERL. Land managers are given the job of protecting, maintaining, and developing areas of land. To perform this duty, a land manager needs various types of geographical information. Some of this infor- mation may be available in the GRASS database, represented by raster map layers. Other information may not be available directly, but can be derived by analyzing and/or combining information from one or more existing raster map layers. Often, the manner in which information needs to be interpreted or combined can be represented by a mathematical equation. In such a case, the GRASS tool r.mapcalc provides the user with a means for quickly obtaining the desired resultant geographical information. r.mapcalc is a calculator for raster map layers, performing mathematical calculations on a cell- by-cell basis to obtain a new raster map layer. Calculations are done in the usual precedence of operaordering. tions with parentheses used to designate an otherwise desired 3. SYNTAX The r.mapcalc command expects input in the form of: result = expression Within the equation "result=expression", result is the name of the new raster map layer to contain the result of the calculation, and expression is any legal mathematical expression involving raster map layers, integer or floating point constants, and functions known to the r.mapcalc calculator. Known operators and functions are listed in following sections, along with the order of computation for the operations. r.mapcalc will create the resulting raster map layer in the current mapset. It should be noted that r.mapcalc works with the current region and mask settings. Caution should be used to insure correct results. If the user finds that the output from a r.mapcalc equation is not as expected, the current region and mask setting should be checked. The r.mapcalc command can be used in one of three ways: - entering the equation on the command line - entering only the command name (no equation), and then entering equations, one at a time, at the new (MAPCALC) prompt - passing one or more equations to the map calculator via redirected standard input (either from a file or across a pipe) Because the UNIX shell interprets some characters to have special meanings (see the Special Characexplanantion ters section below), the user is advised to use the second of these methods. However, an of each input method follows. If the equation (result=expression) is given on the command line, only one equation can be provided. This equation is evaluated, the new map layer is created, and the user is returned to the GRASS
5 prompt. If the command r.mapcalc is entered alone, then a new (MAPCALC) prompt appears, and the user can enter equation after equation. After the entry of each equation, it is evaluated, the new map layer is created, and the user is returned to the MAPCALC prompt. After all desired equations have been evaluated, the user is returned to the GRASS 4.0 prompt by simply hitting the RETURN key (without entering anything on the line) to denote that no more equations are to be given. In the event of lengthy formulas in the expression, a line continuation feature has been added. By adding a \ to the end of the input line, r.mapcalc assumes that the formula continues onto the next input line. There is no limit to the number of imput lines or to the length of the formula. Please note that the line continuation feature only works when entering formulas from standard input and does not work if the user enters input on the command line. Therefore, if the user is working with lengthy expressions, they should enter the standard input mode by typing r.mapcalc alone on the command line and hit return before entering input. Input can also be provided through redirected standard input (from a file or across a pipe). If one or more equations have been entered into a file, they can be evaluated using r.mapcalc in one of the following ways: r.mapcalc < inputfile or cat inputfile r.mapcalc The cat command simply types out the contents of a file. The pipe character tells UNIX to "pipe" the results of one command into another command. Thus, in this last example, the contents of the file inputfile are piped to the r.mapcalc command as input. It is not the intention of this document to cover either the cat command or the piping capabilities of UNIX in detail. No further examples using the pipe capability will be given. When equations are sent to the r.mapcalc command via redirected standard input, all entered equations are evaluated, one after another, and the user is returned to the GRASS 4.0 prompt when the end of the file or input stream is reached.
6 OPERATORS AND ORDER OF PRECEDENCE Operator Meaning Type Precedence % modulus (remainder upon division) Arithmetic 1 / division Arithmetic 1 * multiplication Arithmetic 1 + addition Arithmetic 2 - subtraction Arithmetic 2 == equal Logical 3!= not equal Logical 3 > greater than Logical 3 >= greater than or equal Logical 3 < less than Logical 3 <= less than or equal Logical 3 && and Logical 4 or Logical 4 Division by 0 and modulus by 0 are acceptable and give a 0 result. The operators are applied from left to right, with those of lower numbered precedence applied before those with higher numbered precedence. Parentheses are allowed, and can be used to override stated precedence. Nested parentheses are allowed to any depth FUNCTIONS The following functions are currently supported: abs(x) return absolute value of x eval([x,y,...,]z) evaluate values of listed expr, pass results to z float(x) convert x to floating point if decision options: if(x) 1 if x not zero, 0 otherwise if(x,a) a if x not zero, 0 otherwise if(x,a,b) a if x not zero, b otherwise if(x,a,b,c) a if x > 0,bifxiszero,cifx< 0 int(x) convert x to integer [ truncates ] log(x) natural log of x log(x,b) log of x base b max(x,y[,z...]) largest value of those listed median(x,y[,z...]) median value of those listed min(x,y[,z...]) smallest value of those listed round(x) round x to nearest integer sqrt(x) tan(x) square root of x tangent of x (x is in degrees) The variables x, y, z, a, b, and c above can be replaced by integer or floating point constants, a raster map layer name, or another expression involving constants, raster map layers, and other functions, provided the numbers represented are within the allowable domain of the given function. (For instance, tan(expression) makes sense only if expression evaluates to a number representing degrees.) Note that although functions are available which produce floating point results, the resulting raster map can hold only integer (category) values. Thus, if the final "answer" to a calculation is a floating
7 -7- point number, the number will be rounded to the nearest integer before being stored as a value in the resulting map layer. Calculations will be done according to the type of values being used in the expression. For instance, (8 / 3) will be calculated using integer arithmetic, and the answer will be 2. If the user wants the answer to be a floating point number which is rounded, care should be taken to create floating point arithmetic; for example, ( 8.0 / 3 ) and ( float(8) / 3 ) would be evaluated as floating point values (here, 2.66) that are finally rounded to 3 after all calculations are completed, when assigned as map category values in the resultant map layer. Anything given in the mathematical expression which is not a constant, an operator, or a known function name will be taken as a raster map layer name. If a GRASS raster map layer has been given a name which could be interpreted as a constant or an arithmetic expression, the raster map layer name must be enclosed in double quotes for correct use with the r.mapcalc command. For instance, suppose a map layer has been created which is a reclass of a soils map layer, and it has been named soilsexpression reclass. The newmap=soils-reclass * 2 would attempt to create a raster map layer named newmap which is the raster map layer soils minus the raster map layer reclass times 2, while the expression newmap="soils-reclass" *2 would attempt to create a raster map layer named newmap, which is the raster map layer soils-reclass times 2. Using quotes around the resulting map name is an error MAPSET SEARCH PATHS The r.mapcalc command will look for the map layer names given in the mathematical expression according to the current mapset search path. It is possible to use a raster map layer found in another mapset by explicitly specifying the mapset (mapname@mapset). For instance, in the following expression: newmap = x@permanent / y the raster map layer x will be looked for specifically in mapset PERMANENT, while the raster map layer y will be searched for in the mapsets included in the user s current GRASS mapset search path. The "@mapset" form is not allowed in the name for the resulting map layer, which is automatimapset. cally created in the current 3.4. SPECIAL CHARACTERS For evaluating only one equation, it is simplest to enter the equation on the command line. Howlight ever, there are two things about this usage of the r.mapcalc command that should be brought to here. Since the equation is being given on the command line, care must be taken when using characters which have special meaning to the UNIX shell. It is advisable to enclose the expression portion in sin- gle quotes to avoid unexpected results. These special characters include, among others: * ( ) > & [ ] < For instance, since the * character has special meaning to the UNIX shell, the expression in: r.mapcalc newmap = elevation * 2 would be altered before being sent to the map calculator, and would result in error. Instead, using sinportion: gle quotes around the expression
8 r.mapcalc result = elevation * 2 If the user wishes to input more than one equation, a different usage of the r.mapcalc command would be logical. For this case, only the command name is given. A new (MAPCALC) prompt is then provided, and equations are entered one after another. All characters given are taken as is, and are not modified by the UNIX shell. If the result raster map layer given at this MAPCALC prompt already exists, the user is warned, and asked for a decision about overwriting it. 4. mat: SAMPLE SESSION/EXAMPLES This sample session can be replicated by running the GRASS within the location spearfish. -8- would let the UNIX shell know that any special characters should not be altered, and the expression would be sent as is to the r.mapcalc command. (Without the use of single quotes around the expres- sion portion, parentheses may also be misinterpreted, and, although the expression may be correct, the message "Badly placed () s" would be given.) The second thing to note about this type of usage of the r.mapcalc command is that if the result map given on the command line is the name of a currently existing raster map layer, it is assumed that the user wants to overwrite it, and the raster map layer will be overwritten without warning NEIGHBORHOOD MODIFIERS Maps and images are database files stored in raster format, i.e., two-dimensional matrices of integer values. In r.mapcalc, maps may be followed by a neighborhood modifier that specifies a rela- tive offset from the current cell being evaluated. The format is map[r,c], where r is the row offset and c is the column offset. For example, map[1,2] refers to the cell one row below and two columns to the right of the current cell, map[-2,-1] refers to the cell two rows above and one column to the left of the current cell, and map[0,1] refers to the cell one column to the right of the current cell. This syntax per- mits the development of neighborhood-type filters within a single map or across multiple maps CATEGORY LABELS vs. CATEGORY VALUES Sometimes it is desirable to use a value associated with a category s contents instead of the category value itself. If a raster map layer name is preceded by operator, then the labels in the category file for the raster map layer are used in the expression instead of the category value. For example, if you specified "@elevation.dted" in an r.mapcalc equation, it would read the actual eleva- tion values for each category, rather than the category numbers themselves, which are simply scaled between This use of the "@" symbol is different from that earlier described in the section Mapset Search Paths. In that section, the "@" symbol is preceded by a GRASS map layer name, and is followed by the name of a GRASS mapset. It is used to specify the use of a particular map layer (i.e., the named map layer stored under the named mapset), rather than any other map layer of the same name stored under any other mapset listed in the user s mapset search path. Commands that you are requested to enter are displayed in this document with the following for- PROMPT:> your_command Results that you should see after entering a command are displayed in this document with the following format: Some result displayed here The PROMPT you see will depend on whether you are at the main GRASS 4.0 shell level, or whether
9 - 9 - you have typed in the r.mapcalc command alone (without arguments) and are therefore at a MAP- CALC prompt COMMAND-LINE EXAMPLES Suppose that you have a raster map layer describing elevation in which the category values are the true elevations. If you need to have a map layer which also depicts the elevation, but you want the numbering to start at 1 (instead of at the minimum elevation value for that geographic region), you could use the r.mapcalc command with a simple subtraction to create the new map. First, you should find out the range of elevation values contained in the original map layer. This can be done using the GRASS command r.describe. GRASS 4.0> r.describe elevation.dem READING [elevation.dem in PERMANENT] % (Note that in the result section above, 100% is given after the statement about reading a map layer. As the command is actually executing, this will start as 0% and be updated as the execution progresses.) Since the minimum elevation value is 1066, you would subtract out 1065 to start the numbers in the new map layer at 1. GRASS 4.0> r.mapcalc new.elev = elevation.dem PARSING EXPRESSION elevation.dem EXECUTING new.elev = elevation.dem CREATING SUPPORT FILES FOR new.elev m inimum value -1065, maximum value 775 The map calculator has to first parse the expression given, and see if it makes sense mathemati- cally. If the map calculator does not understand something (a function used is not known to the calcu- lator, a parenthesis is unmatched, or the expression is mistyped), a message will be given that the calcu- lator has been confused. If the expression is understood, the calculations begin. The equation is calcu- lated for each grid cell location in the current region, substituting the category value from that grid location for each map layer name in the expression. Once all calculations are complete, the new map layer is created, and the minimum and maximum values in the new map layer are reported. Note that the output from the above command may not be the desired result. The grid cell loca- tions which contained a "0" (no data) value in the original map layer now contain a value of To obtain the desired result (renumbering the values to start at 1) without changing the cell values that were originally 0, we will use a slightly more complex equation, given below. Single quotes should be used around the expression. Otherwise, the UNIX shell tries to interpret the parentheses in a special manner, and the command will not complete. GRASS 4.0> r.mapcalc new.elev = if(elevation.dem,elevation.dem-1065) PARSING EXPRESSION if(elevation.dem, elevation.dem-1065) EXECUTING new.elev = if(elevation.dem, elevation.dem-1065) CREATING SUPPORT FILES FOR new.elev m inimum value 0, maximum value 775 This form of the "if" command within the map calculator is interpreted as: if the category value of "elevation" is non-zero, then set the result equal to "elevation-1065". Otherwise, set the result equal to 0. Note that you were not asked if you desired to overwrite the cell file new.elev. The assumption is that you do want to overwrite it.
10 4.2. STANDARD INPUT EXAMPLES Next we will perform a few more calculations, and to simplify the process, we will type the r.mapcalc command alone without any accompanying equation, then entering our equations, one at a time, at the MAPCALC prompt. (This will simplify the need for quotes around the expression portion of the equation, and will warn us about overwriting raster files that already exist. Also, there will not be a need to re-enter the command name each time, only the new equation.) GRASS 4.0> r.mapcalc M APCALC> A new (MAPCALC) prompt is given, and now we can enter equations one after another. Suppose you would like a map layer depicting an area which has been severely flooded. We will alter the elevation file from the spearfish data set so that only elevations below 1200 feet will be represented, assuming a flooding to 1200 feet. (This is a bit high for flooding, but will illustrate the technique to be used.) Enter the following equation: MAPCALC> new.elev = if(elevation.dem <=1200) PARSING EXPRESSION if(elevation.dem<=1200) new.elev - already exists. ok to overwrite? [n] y EXECUTING new.elev = if(elevation.dem<=1200) CREATING SUPPORT FILES FOR new.elev m inimum value 0, maximum value 1 The color assigned to category 1 should be made a blue color to represent the water level at this elevation. Note that since the equation is being entered at the MAPCALC prompt, a warning is given that the map layer new.elev already exists, and the choice is provided to overwrite or not. If you do not wish to overwrite the map layer new.elev, entern in response to the question (or simply hit RETURN to accept the default response of n shown in brackets). Then you must re-enter the equation with a new resulting map layer name. Now, suppose we want to determine the depth of flooding. MAPCALC> depth= if(new.elev,1200-elevation.dem) PARSING EXPRESSION if(new.elev,1200-elevation.dem) EXECUTING depth = if(new.elev,1200-elevation.dem) CREATING SUPPORT FILES FOR depth _ CREATING NEW DATA LAYERS In the spearfish data set, raster map layers exist representing aspect and streams. It would be interesting to display the streams file overlaid on the aspect map layer to see if the streams seem to line up with changes in aspect direction. This could be done by displaying the aspect map layer, and then using the GRASS command d.rast -o with the map layer streams. If you wanted to actually create a new map layer representing the two map layers together, you could use r.mapcalc. The aspect map layer contains 25 categories--24 directions of aspect, plus category 25 representing "no aspect". (The category range of the aspect map layer can be obtained using the GRASS comlayer mand r.describe.) We will create a new map layer retaining the 25 categories from the aspect map and assigning the streams data to category number 26. Enter the following equation: MAPCALC> aspect.str = if(streams,26,aspect)
11 -11- PARSING EXPRESSION if(streams,26,aspect) EXECUTING aspect.str = if(streams,26,aspect) CREATING SUPPORT FILES FOR aspect.str minimum value 0, maximum value 26 MAPCALC> When the streams file contains a non-zero value, the new map layer is assigned a value of 26. Otherwise, the new map layer receives the category value of the aspect map layer. The new map layer aspect.str will not have any assigned color table. One should be assigned using the GRASS command r.support (probably the color table type labeled "Aspect"). For the streams (represented by category 26) to stand out against the rest of the map, the color for category 26 should then be altered. This can be done using the d.colors program. Hit the RETURN key now to return to the GRASS 4.0 prompt. The next example will illustrate how r.mapcalc can be used to perform an analysis on various raster map layers. Given the following information about the categories for map layers transport.misc, roads, and railroads, an analysis can be done to represent all areas within the spearfish location where transport lines are available. m ap: transport.misc roads railroads c 0 No data 0 No data 0 No data a 1 Power transmission 1 Interstate highway 1 railroad line t 2 Landing strip 2 Primary highway, hard surface 2 e 3 Secondary highway, hard surface g 4 Light duty road, improved surface o 5 Unimproved road r y We will say that transport lines are available when transport.misc has category value 2, when roads has category values 1, 2, or 3, or when railroads has category value 1. The result raster map layer (trans.avail) will have only the one category, denoting that one of the above was true and thereit fore a transportation line of some sort is available. Since the equation for this is a little complicated, might be easiest to create a text file which can be used to provide the input to r.mapcalc. This makes it easier to correct any typing errors. The file created for input is called map.input and is printed out below using the UNIX command cat. GRASS 4.0> cat map.input trans.avail = transport.misc==2 roads==1 roads==2 roads==3 railroads== REDIRECTING INPUT We will evaluate this equation using the redirected input format of the r.mapcalc command as shown below. GRASS 4.0> r.mapcalc < map.input
12 PARSING EXPRESSION transport.misc==2 roads==1 roads==2 roads==3 railroads==1 EXECUTING trans.avail = transport.misc==2 roads==1 roads==2 roads==3 railroads==1 CREATING SUPPORT FILES FOR trans.avail minimum value 0, maximum value 1 EOF -12- Each test for equality (like "transport.misc==2") is a logical expression which evaluates to 0 or 1 (false or true). The tests are joined with logical or s,, so that the result of the expression will evaluate to 1 if any one of the tests for equality is true. The resulting map layer transport.misc will be a zero- one map, where category 1 represents the fact that one of the above conditions is true. The r.mapcalc tool can be used to create map layers with new types of information, derived from information contained in other map layers. Whenever an equation exists that calculates a value from other values, r.mapcalc will be useful provided the original variables in the equation are available as existing raster map layers. For instance, given a drainage accumulation map layer (where category values represent the number of cells within a given watershed which would drain to the given grid loca- tion) and a map layer depicting slope values, a map layer can be derived which approximates the distriis bution of a topographic index characterizing the degree of saturation in the soil mantle. The index mathematically expressed as the ln (drainage_accumulation/tan(slope_magnitude) ) An r.mapcalc statement expressing this mathematical formula can be written using the log and tan functions. High saturation areas are flat and have large contributing areas. A drainage accumulation file for a watershed within the spearfish location can be derived from elevation data using the GRASS program r.watershed. A slope map layer can be derived from elevation data using the GRASS proshould gram r.slope.aspect. A slope map should already be available in the spearfish database. You check to be sure this is not a reclassed version of the slope map, but instead represents degrees of slope. The slope map derived from the r.slope.aspect program reserves category 0 to represent "no data," and so zero degrees is represented as category 1, one degree by category 2, and so on. In developing our mathematical expression for r.mapcalc, we should therefore substitute "slope-1" for "slope" in the equation given above. We do not want to subtract 1 when the slope map layer contains a zero value (recall the example with elevation-1065), so we should use the expression "if(slope,slope-1)." The map calculator for r.mapcalc represents the natural log by "log" (not "ln"), so the expression would look like: log(drain/tan(if(slope,slope-1))) for a drainage accumulation map layer named drain and a slope map layer named slope. The last adjustment to make is to take into consideration what happens when either the drainage accumulation map layer or the slope map layer contains "no data" (category value 0). This would result in a calculated value that is negative and large. We will take care of this case of evaluating using "no data" by eliminating all negative results of the equation (removing results representing a negative soil saturation index). This can be done using the max function as shown below. If the result of the expression is greater than zero, its result will be assigned to the new map layer. However, if the result is less than zero, then zero will be the result of the max function. The r.mapcalc equation used to produce this product map would be: GRASS 4.0> r.mapcalc index.sat= max(0, log( drain / tan(max(0,slope-1)) ) ) PARSING EXPRESSION max(0, log( drain / tan(max(0,slope-1)) ) ) EXECUTING index.sat = max(0, log( drain / tan(max(0,slope-1)) ) ) CREATING SUPPORT FILES FOR index.sat m inimum value 0, maximum value 12
13 You are now finished with the examples and the sample session. See the entry for r.mapcalc in the GRASS User s Reference Manual for additional examples. Unless you want to keep the new map layers created with this tutorial, you may want to remove them now to conserve disk space. 5. CONCLUSIONS AND RECOMMENDATIONS This manual is part of an ongoing process to document Geographic Resources Analysis Support System (GRASS) program functions. It is one of many technology transfer mechanisms being implemented to explain current, and future, GRASS program capabilities to resource managers and system users. Documentation, along with training programs, hands-on use, a user-support center, newsletters, institu- tional structures at the Army and interagency levels, communication networks, and other forums, can be used to aid this ongoing technology transfer effort. User feedback on GRASS program capabilities, documentation, and other technology transfer mechanstaff isms is also needed. Users are encouraged to communicate such feedback to GRASS development at USACERL, via existing electronic communication networks and via the GRASS Information Center at USACERL, P.O. Box 9005, Champaign, IL ; phone ; fax ; e- mail [email protected]. REFERENCES Ruiz, Marilyn S., and Jean M. Messersmith, Cartographic Issues in the Development of a Digital GRASS Database, USACERL Special Report N-90/16 (U.S. Army Construction Engineering Research Laboratory [USACERL], September 1990). Shapiro, Michael and James Westervelt, r.mapcalc: An Algebra for GIS and Image Processing, Draft ADP Report (USACERL, Summer 1992). Westervelt, James, and William D. Goran, Introduction to GRASS 4, Draft ADP Report (USACERL, July 1991). Westervelt, James, Mary Martin, and Deborah Brinegar, "GRASS 4.0 Programs," in GRASS User s Reference Manual, ADP Report N-87/22 rev (USACERL, September 1988, last revised December 1991). Westervelt, James, Michael Shapiro, William D. Goran, et al., GRASS User s Reference Manual, ADP Report N-87/22 rev (USACERL, September 1988, last revised December 1991).
MS Access: Advanced Tables and Queries. Lesson Notes Author: Pamela Schmidt
Lesson Notes Author: Pamela Schmidt Tables Text Fields (Default) Text or combinations of text and numbers, as well as numbers that don't require calculations, such as phone numbers. or the length set by
Microsoft Access 3: Understanding and Creating Queries
Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex
Hands-On UNIX Exercise:
Hands-On UNIX Exercise: This exercise takes you around some of the features of the shell. Even if you don't need to use them all straight away, it's very useful to be aware of them and to know how to deal
SOME EXCEL FORMULAS AND FUNCTIONS
SOME EXCEL FORMULAS AND FUNCTIONS About calculation operators Operators specify the type of calculation that you want to perform on the elements of a formula. Microsoft Excel includes four different types
Engineering Problem Solving and Excel. EGN 1006 Introduction to Engineering
Engineering Problem Solving and Excel EGN 1006 Introduction to Engineering Mathematical Solution Procedures Commonly Used in Engineering Analysis Data Analysis Techniques (Statistics) Curve Fitting techniques
Microsoft Excel 2010 Part 3: Advanced Excel
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Excel 2010 Part 3: Advanced Excel Winter 2015, Version 1.0 Table of Contents Introduction...2 Sorting Data...2 Sorting
VISUAL GUIDE to. RX Scripting. for Roulette Xtreme - System Designer 2.0
VISUAL GUIDE to RX Scripting for Roulette Xtreme - System Designer 2.0 UX Software - 2009 TABLE OF CONTENTS INTRODUCTION... ii What is this book about?... iii How to use this book... iii Time to start...
1 Introduction. 2 An Interpreter. 2.1 Handling Source Code
1 Introduction The purpose of this assignment is to write an interpreter for a small subset of the Lisp programming language. The interpreter should be able to perform simple arithmetic and comparisons
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa September 14, 2011 G. Lipari (Scuola Superiore Sant Anna) Introduction
Math Review. for the Quantitative Reasoning Measure of the GRE revised General Test
Math Review for the Quantitative Reasoning Measure of the GRE revised General Test www.ets.org Overview This Math Review will familiarize you with the mathematical skills and concepts that are important
Access Queries (Office 2003)
Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy
Eventia Log Parsing Editor 1.0 Administration Guide
Eventia Log Parsing Editor 1.0 Administration Guide Revised: November 28, 2007 In This Document Overview page 2 Installation and Supported Platforms page 4 Menus and Main Window page 5 Creating Parsing
Tutorial 8 Raster Data Analysis
Objectives Tutorial 8 Raster Data Analysis This tutorial is designed to introduce you to a basic set of raster-based analyses including: 1. Displaying Digital Elevation Model (DEM) 2. Slope calculations
Database Applications Microsoft Access
Database Applications Microsoft Access Lesson 4 Working with Queries Difference Between Queries and Filters Filters are temporary Filters are placed on data in a single table Queries are saved as individual
Informatica e Sistemi in Tempo Reale
Informatica e Sistemi in Tempo Reale Introduction to C programming Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 25, 2010 G. Lipari (Scuola Superiore Sant Anna)
Almost all spreadsheet programs are based on a simple concept: the malleable matrix.
MS EXCEL 2000 Spreadsheet Use, Formulas, Functions, References More than any other type of personal computer software, the spreadsheet has changed the way people do business. Spreadsheet software allows
Microsoft Excel Tips & Tricks
Microsoft Excel Tips & Tricks Collaborative Programs Research & Evaluation TABLE OF CONTENTS Introduction page 2 Useful Functions page 2 Getting Started with Formulas page 2 Nested Formulas page 3 Copying
Creating Basic Excel Formulas
Creating Basic Excel Formulas Formulas are equations that perform calculations on values in your worksheet. Depending on how you build a formula in Excel will determine if the answer to your formula automatically
A Quick Algebra Review
1. Simplifying Epressions. Solving Equations 3. Problem Solving 4. Inequalities 5. Absolute Values 6. Linear Equations 7. Systems of Equations 8. Laws of Eponents 9. Quadratics 10. Rationals 11. Radicals
Spatial data analysis: retrieval, (re)classification and measurement operations
CHAPTER 7 Spatial data analysis: retrieval, (re)classification and measurement operations In chapter 5 you used a number of table window operations, such as calculations, aggregations, and table joining,
Computational Mathematics with Python
Boolean Arrays Classes Computational Mathematics with Python Basics Olivier Verdier and Claus Führer 2009-03-24 Olivier Verdier and Claus Führer Computational Mathematics with Python 2009-03-24 1 / 40
Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information.
Excel Tutorial Below is a very brief tutorial on the basic capabilities of Excel. Refer to the Excel help files for more information. Working with Data Entering and Formatting Data Before entering data
MBA Jump Start Program
MBA Jump Start Program Module 2: Mathematics Thomas Gilbert Mathematics Module Online Appendix: Basic Mathematical Concepts 2 1 The Number Spectrum Generally we depict numbers increasing from left to right
JavaScript: Introduction to Scripting. 2008 Pearson Education, Inc. All rights reserved.
1 6 JavaScript: Introduction to Scripting 2 Comment is free, but facts are sacred. C. P. Scott The creditor hath a better memory than the debtor. James Howell When faced with a decision, I always ask,
We will learn the Python programming language. Why? Because it is easy to learn and many people write programs in Python so we can share.
LING115 Lecture Note Session #4 Python (1) 1. Introduction As we have seen in previous sessions, we can use Linux shell commands to do simple text processing. We now know, for example, how to count words.
Introduction to Python
WEEK ONE Introduction to Python Python is such a simple language to learn that we can throw away the manual and start with an example. Traditionally, the first program to write in any programming language
EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.
EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your
Name: Class: Date: 9. The compiler ignores all comments they are there strictly for the convenience of anyone reading the program.
Name: Class: Date: Exam #1 - Prep True/False Indicate whether the statement is true or false. 1. Programming is the process of writing a computer program in a language that the computer can respond to
PHP Debugging. Draft: March 19, 2013 2013 Christopher Vickery
PHP Debugging Draft: March 19, 2013 2013 Christopher Vickery Introduction Debugging is the art of locating errors in your code. There are three types of errors to deal with: 1. Syntax errors: When code
Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions
2010 Using Excel for Data Manipulation and Statistical Analysis: How-to s and Cautions This document describes how to perform some basic statistical procedures in Microsoft Excel. Microsoft Excel is spreadsheet
3 Some Integer Functions
3 Some Integer Functions A Pair of Fundamental Integer Functions The integer function that is the heart of this section is the modulo function. However, before getting to it, let us look at some very simple
grep, awk and sed three VERY useful command-line utilities Matt Probert, Uni of York grep = global regular expression print
grep, awk and sed three VERY useful command-line utilities Matt Probert, Uni of York grep = global regular expression print In the simplest terms, grep (global regular expression print) will search input
Appendix: Tutorial Introduction to MATLAB
Resampling Stats in MATLAB 1 This document is an excerpt from Resampling Stats in MATLAB Daniel T. Kaplan Copyright (c) 1999 by Daniel T. Kaplan, All Rights Reserved This document differs from the published
MATLAB Programming. Problem 1: Sequential
Division of Engineering Fundamentals, Copyright 1999 by J.C. Malzahn Kampe 1 / 21 MATLAB Programming When we use the phrase computer solution, it should be understood that a computer will only follow directions;
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1
MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...
Objectives. Raster Data Discrete Classes. Spatial Information in Natural Resources FANR 3800. Review the raster data model
Spatial Information in Natural Resources FANR 3800 Raster Analysis Objectives Review the raster data model Understand how raster analysis fundamentally differs from vector analysis Become familiar with
How do you compare numbers? On a number line, larger numbers are to the right and smaller numbers are to the left.
The verbal answers to all of the following questions should be memorized before completion of pre-algebra. Answers that are not memorized will hinder your ability to succeed in algebra 1. Number Basics
Introduction to Python
Caltech/LEAD Summer 2012 Computer Science Lecture 2: July 10, 2012 Introduction to Python The Python shell Outline Python as a calculator Arithmetic expressions Operator precedence Variables and assignment
Using Excel for Statistical Analysis
2010 Using Excel for Statistical Analysis Microsoft Excel is spreadsheet software that is used to store information in columns and rows, which can then be organized and/or processed. Excel is a powerful
MATLAB Basics MATLAB numbers and numeric formats
MATLAB Basics MATLAB numbers and numeric formats All numerical variables are stored in MATLAB in double precision floating-point form. (In fact it is possible to force some variables to be of other types
Computational Mathematics with Python
Computational Mathematics with Python Basics Claus Führer, Jan Erik Solem, Olivier Verdier Spring 2010 Claus Führer, Jan Erik Solem, Olivier Verdier Computational Mathematics with Python Spring 2010 1
Intro to Excel spreadsheets
Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using
Unix Scripts and Job Scheduling
Unix Scripts and Job Scheduling Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh [email protected] http://www.sis.pitt.edu/~spring Overview Shell Scripts
Final Exam Review: VBA
Engineering Fundamentals ENG1100 - Session 14B Final Exam Review: VBA 1 //coe/dfs/home/engclasses/eng1101/f03/ethics/en1.e05.finalcoursewrapup.sxi Final Programming Exam Topics Flowcharts Assigning Variables
A Programming Language for Mechanical Translation Victor H. Yngve, Massachusetts Institute of Technology, Cambridge, Massachusetts
[Mechanical Translation, vol.5, no.1, July 1958; pp. 25-41] A Programming Language for Mechanical Translation Victor H. Yngve, Massachusetts Institute of Technology, Cambridge, Massachusetts A notational
0 Introduction to Data Analysis Using an Excel Spreadsheet
Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do
Simple C++ Programs. Engineering Problem Solving with C++, Etter/Ingber. Dev-C++ Dev-C++ Windows Friendly Exit. The C++ Programming Language
Simple C++ Programs Engineering Problem Solving with C++, Etter/Ingber Chapter 2 Simple C++ Programs Program Structure Constants and Variables C++ Operators Standard Input and Output Basic Functions from
Formulas, Functions and Charts
Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to
COLLEGE ALGEBRA. Paul Dawkins
COLLEGE ALGEBRA Paul Dawkins Table of Contents Preface... iii Outline... iv Preliminaries... Introduction... Integer Exponents... Rational Exponents... 9 Real Exponents...5 Radicals...6 Polynomials...5
Free Pre-Algebra Lesson 55! page 1
Free Pre-Algebra Lesson 55! page 1 Lesson 55 Perimeter Problems with Related Variables Take your skill at word problems to a new level in this section. All the problems are the same type, so that you can
Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide
Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick
Chapter 7. Using Formulas and Functions
Chapter 7 Using Formulas and Functions Although the majority of your analysis can be performed through the Research Assistant, there may be times when you are building a custom report or chart or working
PURSUITS IN MATHEMATICS often produce elementary functions as solutions that need to be
Fast Approximation of the Tangent, Hyperbolic Tangent, Exponential and Logarithmic Functions 2007 Ron Doerfler http://www.myreckonings.com June 27, 2007 Abstract There are some of us who enjoy using our
SnapLogic Tutorials Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic.
Document Release: October 2013 SnapLogic, Inc. 2 West 5th Ave, Fourth Floor San Mateo, California 94402 U.S.A. www.snaplogic.com Table of Contents SnapLogic Tutorials 1 Table of Contents 2 SnapLogic Overview
Rational Rational ClearQuest
Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Rational Rational ClearQuest Version 7.0 Windows Using Project Tracker GI11-6377-00 Before using this information, be
Solutions to Exercises, Section 5.1
Instructor s Solutions Manual, Section 5.1 Exercise 1 Solutions to Exercises, Section 5.1 1. Find all numbers t such that ( 1 3,t) is a point on the unit circle. For ( 1 3,t)to be a point on the unit circle
Differences in Use between Calc and Excel
Differences in Use between Calc and Excel Title: Differences in Use between Calc and Excel: Version: 1.0 First edition: October 2004 Contents Overview... 3 Copyright and trademark information... 3 Feedback...3
Autodesk Civil 3D Styles: A Guide to the Fundamentals
AUTODESK CIVIL 3D WHITE PAPER Autodesk Civil 3D Styles: A Guide to the Fundamentals About the Author: Mark Scacco, PE, is the founder and president of Engineered Efficiency, Inc., a technology consulting
Calc Guide Chapter 9 Data Analysis
Calc Guide Chapter 9 Data Analysis Using Scenarios, Goal Seek, Solver, others Copyright This document is Copyright 2007 2011 by its contributors as listed below. You may distribute it and/or modify it
Introduction to Matlab
Introduction to Matlab Social Science Research Lab American University, Washington, D.C. Web. www.american.edu/provost/ctrl/pclabs.cfm Tel. x3862 Email. [email protected] Course Objective This course provides
Computational Mathematics with Python
Numerical Analysis, Lund University, 2011 1 Computational Mathematics with Python Chapter 1: Basics Numerical Analysis, Lund University Claus Führer, Jan Erik Solem, Olivier Verdier, Tony Stillfjord Spring
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro
Lab 9 Access PreLab Copy the prelab folder, Lab09 PreLab9_Access_intro, to your M: drive. To do the second part of the prelab, you will need to have available a database from that folder. Creating a new
VISUAL ALGEBRA FOR COLLEGE STUDENTS. Laurie J. Burton Western Oregon University
VISUAL ALGEBRA FOR COLLEGE STUDENTS Laurie J. Burton Western Oregon University VISUAL ALGEBRA FOR COLLEGE STUDENTS TABLE OF CONTENTS Welcome and Introduction 1 Chapter 1: INTEGERS AND INTEGER OPERATIONS
Advanced Bash Scripting. Joshua Malone ([email protected])
Advanced Bash Scripting Joshua Malone ([email protected]) Why script in bash? You re probably already using it Great at managing external programs Powerful scripting language Portable and version-stable
Object Oriented Software Design
Object Oriented Software Design Introduction to Java - II Giuseppe Lipari http://retis.sssup.it/~lipari Scuola Superiore Sant Anna Pisa October 28, 2010 G. Lipari (Scuola Superiore Sant Anna) Introduction
HP-UX Essentials and Shell Programming Course Summary
Contact Us: (616) 875-4060 HP-UX Essentials and Shell Programming Course Summary Length: 5 Days Prerequisite: Basic computer skills Recommendation Statement: Student should be able to use a computer monitor,
Using Casio Graphics Calculators
Using Casio Graphics Calculators (Some of this document is based on papers prepared by Donald Stover in January 2004.) This document summarizes calculation and programming operations with many contemporary
Microsoft Access 2010 Overview of Basics
Opening Screen Access 2010 launches with a window allowing you to: create a new database from a template; create a new template from scratch; or open an existing database. Open existing Templates Create
9.2 Summation Notation
9. Summation Notation 66 9. Summation Notation In the previous section, we introduced sequences and now we shall present notation and theorems concerning the sum of terms of a sequence. We begin with a
Microsoft Access 2010 Part 1: Introduction to Access
CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3
Microsoft Excel Tutorial
Microsoft Excel Tutorial by Dr. James E. Parks Department of Physics and Astronomy 401 Nielsen Physics Building The University of Tennessee Knoxville, Tennessee 37996-1200 Copyright August, 2000 by James
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1
Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...
Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different)
Spreadsheets and Laboratory Data Analysis: Excel 2003 Version (Excel 2007 is only slightly different) Spreadsheets are computer programs that allow the user to enter and manipulate numbers. They are capable
Quick Reference ebook
This file is distributed FREE OF CHARGE by the publisher Quick Reference Handbooks and the author. Quick Reference ebook Click on Contents or Index in the left panel to locate a topic. The math facts listed
Spatial Analyst Tutorial
Copyright 1995-2010 Esri All rights reserved. Table of Contents About the ArcGIS Spatial Analyst Tutorial......................... 3 Exercise 1: Preparing for analysis............................ 5 Exercise
Shell Scripts (1) For example: #!/bin/sh If they do not, the user's current shell will be used. Any Unix command can go in a shell script
Shell Programming Shell Scripts (1) Basically, a shell script is a text file with Unix commands in it. Shell scripts usually begin with a #! and a shell name For example: #!/bin/sh If they do not, the
1 Using a SQL Filter in Outlook 2002/2003 Views. 2 Defining the Problem The Task at Hand
1 Using a SQL Filter in Outlook 2002/2003 Views Those of you who have used Outlook for a while may have discovered the power of Outlook Views and use these on every folder to group, sort and filter your
Introduction to Microsoft Access 2003
Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft
SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89. by Joseph Collison
SYSTEMS OF EQUATIONS AND MATRICES WITH THE TI-89 by Joseph Collison Copyright 2000 by Joseph Collison All rights reserved Reproduction or translation of any part of this work beyond that permitted by Sections
Linear Equations in One Variable
Linear Equations in One Variable MATH 101 College Algebra J. Robert Buchanan Department of Mathematics Summer 2012 Objectives In this section we will learn how to: Recognize and combine like terms. Solve
Embedded Systems. Review of ANSI C Topics. A Review of ANSI C and Considerations for Embedded C Programming. Basic features of C
Embedded Systems A Review of ANSI C and Considerations for Embedded C Programming Dr. Jeff Jackson Lecture 2-1 Review of ANSI C Topics Basic features of C C fundamentals Basic data types Expressions Selection
Data Preparation in SPSS
Data Preparation in SPSS Jamie DeCoster Center for Advanced Study of Teaching and Learning University of Virginia 350 Old Ivy Way Charlottesville, VA 22903 August 15, 2012 If you wish to cite the contents
Abstract. For notes detailing the changes in each release, see the MySQL for Excel Release Notes. For legal information, see the Legal Notices.
MySQL for Excel Abstract This is the MySQL for Excel Reference Manual. It documents MySQL for Excel 1.3 through 1.3.6. Much of the documentation also applies to the previous 1.2 series. For notes detailing
SPSS: Getting Started. For Windows
For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering
Innovative Techniques and Tools to Detect Data Quality Problems
Paper DM05 Innovative Techniques and Tools to Detect Data Quality Problems Hong Qi and Allan Glaser Merck & Co., Inc., Upper Gwynnedd, PA ABSTRACT High quality data are essential for accurate and meaningful
Selecting a Sub-set of Cases in SPSS: The Select Cases Command
Selecting a Sub-set of Cases in SPSS: The Select Cases Command When analyzing a data file in SPSS, all cases with valid values for the relevant variable(s) are used. If I opened the 1991 U.S. General Social
How To Use Excel With A Calculator
Functions & Data Analysis Tools Academic Computing Services www.ku.edu/acs Abstract: This workshop focuses on the functions and data analysis tools of Microsoft Excel. Topics included are the function
Indiana State Core Curriculum Standards updated 2009 Algebra I
Indiana State Core Curriculum Standards updated 2009 Algebra I Strand Description Boardworks High School Algebra presentations Operations With Real Numbers Linear Equations and A1.1 Students simplify and
Introduction to GIS (Basics, Data, Analysis) & Case Studies. 13 th May 2004. Content. What is GIS?
Introduction to GIS (Basics, Data, Analysis) & Case Studies 13 th May 2004 Content Introduction to GIS Data concepts Data input Analysis Applications selected examples What is GIS? Geographic Information
Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial
Using Formulas, Functions, and Data Analysis Tools Excel 2010 Tutorial Excel file for use with this tutorial Tutor1Data.xlsx File Location http://faculty.ung.edu/kmelton/data/tutor1data.xlsx Introduction:
Introduction to the Hewlett-Packard (HP) 10BII Calculator and Review of Mortgage Finance Calculations
Introduction to the Hewlett-Packard (HP) 10BII Calculator and Review of Mortgage Finance Calculations Real Estate Division Sauder School of Business University of British Columbia Introduction to the Hewlett-Packard
What is GIS? Geographic Information Systems. Introduction to ArcGIS. GIS Maps Contain Layers. What Can You Do With GIS? Layers Can Contain Features
What is GIS? Geographic Information Systems Introduction to ArcGIS A database system in which the organizing principle is explicitly SPATIAL For CPSC 178 Visualization: Data, Pixels, and Ideas. What Can
Excel: Introduction to Formulas
Excel: Introduction to Formulas Table of Contents Formulas Arithmetic & Comparison Operators... 2 Text Concatenation... 2 Operator Precedence... 2 UPPER, LOWER, PROPER and TRIM... 3 & (Ampersand)... 4
AP Computer Science Java Subset
APPENDIX A AP Computer Science Java Subset The AP Java subset is intended to outline the features of Java that may appear on the AP Computer Science A Exam. The AP Java subset is NOT intended as an overall
Chapter 4. Spreadsheets
Chapter 4. Spreadsheets We ve discussed rather briefly the use of computer algebra in 3.5. The approach of relying on www.wolframalpha.com is a poor subsititute for a fullfeatured computer algebra program
Q&As: Microsoft Excel 2013: Chapter 2
Q&As: Microsoft Excel 2013: Chapter 2 In Step 5, why did the date that was entered change from 4/5/10 to 4/5/2010? When Excel recognizes that you entered a date in mm/dd/yy format, it automatically formats
VB.NET Programming Fundamentals
Chapter 3 Objectives Programming Fundamentals In this chapter, you will: Learn about the programming language Write a module definition Use variables and data types Compute with Write decision-making statements
Oracle Database: SQL and PL/SQL Fundamentals NEW
Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the
Oracle Database: SQL and PL/SQL Fundamentals
Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along
Chapter 5. Selection 5-1
Chapter 5 Selection 5-1 Selection (Decision) The second control logic structure is selection: Selection Choosing between two or more alternative actions. Selection statements alter the sequential flow
