SQL Processing with SAS® Tip Sheet

Total Page:16

File Type:pdf, Size:1020Kb

SQL Processing with SAS® Tip Sheet SQL Processing with SAS® Tip Sheet This tip sheet is associated with the SAS® Certified Professional Prep Guide Advanced Programming Using SAS® 9.4. For more information, visit www.sas.com/certify Basic Queries ModifyingBasic Queries Columns PROC SQL <options>; SELECT col-name SELECT column-1 <, ...column-n> LABEL= LABEL=’column label’ FROM input-table <WHERE expression> SELECT col-name <GROUP BY col-name> FORMAT= FORMAT=format. <HAVING expression> <ORDER BY col-name> <DESC> <,...col-name>; Creating a SELECT col-name AS SQL Query Order of Execution: new column new-col-name Filtering Clause Description WHERE CALCULATED new columns new-col-name SELECT Retrieve data from a table FROM Choose and join tables Modifying Rows WHERE Filter the data GROUP BY Aggregate the data INSERT INTO table SET column-name=value HAVING Filter the aggregate data <, ...column-name=value>; ORDER BY Sort the final data Inserting rows INSERT INTO table <(column-list)> into tables VALUES (value<,...value>); INSERT INTO table <(column-list)> Managing Tables SELECT column-1<,...column-n> FROM input-table; CREATE TABLE table-name Eliminating SELECT DISTINCT CREATE TABLE (column-specification-1<, duplicate rows col-name<,...col-name> ...column-specification-n>); WHERE col-name IN DESCRIBE TABLE table-name-1 DESCRIBE TABLE (value1, value2, ...) <,...table-name-n>; WHERE col-name LIKE “_string%” DROP TABLE table-name-1 DROP TABLE WHERE col-name BETWEEN <,...table-name-n>; Filtering value AND value rows WHERE col-name IS NULL WHERE date-value Managing Views “<01JAN2019>”d WHERE time-value “<14:45:35>”t CREATE VIEW CREATE VIEW table-name AS query; WHERE datetime-value “<01JAN201914:45:35>”dt DESCRIBE VIEW view-name-1 DESCRIBE VIEW <,...view-name-n>; Remerging Summary Statistics DROP VIEW DROP VIEW view-name-1 <,...view-name-n>; SELECT col-name, summary function(argument) FROM input table; Copyright © 2019 SAS Institute Inc. Cary, NC, USA. All rights reserved. SQL Processing with SAS® Tip Sheet This tip sheet is associated with the SAS® Certified Professional Prep Guide Advanced Programming Using SAS® 9.4. For more information, visit www.sas.com/certify Joins Summary Set Operators Inner Join The INTERSECT operator selects unique rows that are common to both tables. SELECT <list> B A FROM table-A INNER JOIN table-B A SELECT <list> ON A.Key=B.Key; FROM table-A INTERSECT SELECT <list> Full Join B FROM table-B; SELECT <list> A B FROM table-A FULL JOIN table-B The EXCEPT operator selects unique rows from table A that ON A.Key=B.Key; are not found in table B. SELECT <list> A Right Join FROM table-A EXCEPT SELECT <list> SELECT <list> B FROM table-B; A B FROM table-A RIGHT JOIN table-B ON A.Key=B.Key; The UNION operator selects unique rows from both tables. A SELECT <list> Left Join FROM table-A UNION SELECT <list> SELECT <list> B A B FROM table-A LEFT JOIN table-B FROM table-B; ON A.Key=B.Key; The OUTER UNION operator selects all rows from both tables. Creating Macro Variables A SELECT <list> Storing a value in a macro variable using SQL: FROM table-A OUTER UNION SELECT <list> SELECT col-name-1 <,...col-name-n> B FROM table-B; INTO:macrvar_1<,...macvar-n> FROM input-table; Storing a list of values in a macro variable using SQL: SELECT col-name-1 <,...col-name-n> Accessing DBMS Data INTO:macrvar_1 SEPARATED BY ‘delimiter’ FROM input-table; The SQL pass-through facility enables you to code in Viewing the value of the macro variable in the SAS Log: the native DBMS SQL syntax and pass the query to the %PUT &=macvar; database. PROC SQL; CONNECT TO DBMS-name <AS alias> Subqueries (DBMS-connection-options); SELECT col-name SELECT col-name, FROM CONNECTION TO DBMS-name|alias (dbms-query); (SELECT function(argument) DISCONNECT FROM DBMS-name|alias; FROM input-table) QUIT; FROM input-table; SELECT col-name, <,...col-name> FROM input-table WHERE col-name (SELECT function(argument) FROM input-table) Copyright © 2019 SAS Institute Inc. Cary, NC, USA. All rights reserved. SAS® Macro Language Processing This tip sheet is associated with the SAS® Certified Professional Prep Guide Advanced Programming Using SAS® 9.4. For more information, visit www.sas.com/certify SAS Macro Facility Macro Character Functions SAS Syntax Description Macro Determines the position of the Facility %INDEX (source, string) first character of a string within SAS macro SAS program another string. program code %SCAN (argument, n, Searches the argument and <charlist < returns the nth word. Creating Macro Variables ,modifiers>>) Produces a substring of character Syntax Description %SUBSTR(argument, string (argument) by extracting position, the specified number of Creates a macro variable that is %GLOBAL macro-variable-1 <,length>) characters (length) beginning available during the execution ...macro-variable-n; at the specified starting position. of the entire SAS session. %LET variable=value; Creates a macro variable and %UPCASE(character-string| Converts lowercase characters assigns it a value. text-expression) in the argument to uppercase. Creates a macro variable that %LOCAL macro-variable-1 is available only during the ...macro-variable-n; execution of the macro where it is defined. SAS Functions with Macro Variables Defining a Macro Syntax Description %EVAL(arithmetic or Evaluates arithmetic and logical expressions using integer %MACRO macro-name <(parameter-list)>; logical expression) arithmetic. macro-text %MEND <macro-name>; %SYSEVALF(expression Evaluates arithmetic and logical The parameter-list can be: <,conversion-type>) expressions using floating-point <positional-parameter-1, ...positional-parameter-n> or arithmetic. <keyword-1=value-1, ....keyword-n=value-n> %SYSFUNC(function Executes SAS functions or (argument-1 user-written functions in the <...argument-n>) macro facility. Calling a Macro <,format>) %macro-name %macro-name(positional-parameter-1, ...positional-parameter-n) Troubleshooting Macro Variable References %macro-name(keyword-1=value-1, ....keyword-n=value-n) Enables you to write your own messages to the SAS log. %PUT text; Referencing a Macro Variable Deletes the specified variables from the macro global symbol table. Use the name of the macro variable with an ampersand. %SYMDEL macro-variable-1 <...macro-variable-n></option>; &macro-variable; Copyright © 2019 SAS Institute Inc. Cary, NC, USA. All rights reserved. SAS® Macro Language Processing This tip sheet is associated with the SAS® Certified Professional Prep Guide Advanced Programming Using SAS® 9.4. For more information, visit www.sas.com/certify Masking Special Characters Options Syntax Description OPTIONS MCOMPILENOTE= NONE | NOAUTOCALL | ALL; OPTIONS MPRINT | NOMPRINT; Hides the usual meaning of a %STR(argument) semicolon(;) so it appears as OPTIONS MLOGIC | NOMLOGIC; constant text. OPTIONS MAUTOSOURCE | NOAUTOSOURCE; Hides the usual meaning of an %NRSTR (character-string) ampersand (&) or a percent sign Creating Macros in SQL (%) so they appear as constant text. Masks all special characters and PROC SQL NOPRINT; SELECT column1<,column2,...> %SUPERQ (argument) mnemonic operators at macro execution but prevents further INTO :macro-variable-1<,:macro-variable-2,...> resolution of the value. <TRIMMED> FROM table-1 | view-1 Masks special characters and %BQUOTE(character-string | <WHERE expression> mnemonic operators in a resolved text-expression) <other clauses>; value at macro execution. QUIT; %QUPCASE(character-string | Converts values to uppercase and text-expression) returns a result that masks special characters and mnemonic operators. DATA Step Interface %QSUBSTR(argument, Produces a substring of a CALL SYMPUTX(macro-variable-name, value position character string. <,symbol-table>); <,length>) PUT(source,format.); %QSCAN(argument, n Searches for a word and masks <,charlist<, special characters and mnemonic modifiers>>) operators. Advanced Macro Techniques %QSYSFUNC(function( Executes functions and masks arguments) special characters and mnemonic %INCLUDE file-specification </SOURCE2>; <,format>) operators. DOSUBL(text-string); Default Autocall Library Conditional Processing %LOWCASE(argument) %QLOWCASE(argument) %IF expression %THEN text; <%ELSE text>; %LEFT(argument) %TRIM(argument) %IF expression %THEN %DO; %CMPRES(argument) text and/or macro language statements; %END; %DATATYP(argument) %ELSE %DO; text and/or macro language statements; %END; %DO index-variable=start %TO stop <%BY increment>; text %END; Copyright © 2019 SAS Institute Inc. Cary, NC, USA. All rights reserved. Advanced SAS® Programming Techniques This tip sheet is associated with the SAS® Certified Professional Prep Guide Advanced Programming Using SAS® 9.4. For more information, visit www.sas.com/certify BasicArrays Queries Hash Objects Defining an array ARRAY array-name<[number-of-array-elements]> Key Key Data Data Data <$> <length> <array-elements> <_TEMPORARY_> <(initial-values)>; col_A col_B Data Data Data Referencing an array array-name[element-number]; samparray 1st element 2nd element 3rd element PDV samparray[1] samparray[2] samparray[3] EmpID Salary Bonus Raise_Percent A hash object is an in-memory table that contains key and data components. Hash Object and Iterator Process The number of elements must be enclosed in Declaring hash object or hash iterator object: either parentheses ( ), braces { }, or brackets [ ]. DECLARE hash object-name (<argument_tag-1:value-1, ...>); Unknown Number of Elements DECLARE hiter object-name Use an asterisk (*) within your brackets (’hash-object-name’); when defining an array. Use the DIM function to return the number of Defining a hash
Recommended publications
  • A New Macro-Programming Paradigm in Data Collection Sensor Networks
    SpaceTime Oriented Programming: A New Macro-Programming Paradigm in Data Collection Sensor Networks Hiroshi Wada and Junichi Suzuki Department of Computer Science University of Massachusetts, Boston Program Insert This paper proposes a new programming paradigm for wireless sensor networks (WSNs). It is designed to significantly reduce the complexity of WSN programming by providing a new high- level programming abstraction to specify spatio-temporal data collections in a WSN from a global viewpoint as a whole rather than sensor nodes as individuals. Abstract SpaceTime Oriented Programming (STOP) is new macro-programming paradigm for wireless sensor networks (WSNs) in that it supports both spatial and temporal aspects of sensor data and it provides a high-level abstraction to express data collections from a global viewpoint for WSNs as a whole rather than sensor nodes as individuals. STOP treats space and time as first-class citizens and combines them as spacetime continuum. A spacetime is a three dimensional object that consists of a two special dimensions and a time playing the role of the third dimension. STOP allows application developers to program data collections to spacetime, and abstracts away the details in WSNs, such as how many nodes are deployed in a WSN, how nodes are connected with each other, and how to route data queries in a WSN. Moreover, STOP provides a uniform means to specify data collections for the past and future. Using the STOP application programming interfaces (APIs), application programs (STOP macro programs) can obtain a “snapshot” space at a given time in a given spatial resolutions (e.g., a space containing data on at least 60% of nodes in a give spacetime at 30 minutes ago.) and a discrete set of spaces that meet specified spatial and temporal resolutions.
    [Show full text]
  • Rexx to the Rescue!
    Session: G9 Rexx to the Rescue! Damon Anderson Anixter May 21, 2008 • 9:45 a.m. – 10:45 a.m. Platform: DB2 for z/OS Rexx is a powerful tool that can be used in your daily life as an z/OS DB2 Professional. This presentation will cover setup and execution for the novice. It will include Edit macro coding examples used by DBA staff to solve everyday tasks. DB2 data access techniques will be covered as will an example of calling a stored procedure. Examples of several homemade DBA tools built with Rexx will be provided. Damon Anderson is a Senior Technical DBA and Technical Architect at Anixter Inc. He has extensive experience in DB2 and IMS, data replication, ebusiness, Disaster Recovery, REXX, ISPF Dialog Manager, and related third-party tools and technologies. He is a certified DB2 Database Administrator. He has written articles for the IDUG Solutions Journal and presented at IDUG and regional user groups. Damon can be reached at [email protected] 1 Rexx to the Rescue! 5 Key Bullet Points: • Setting up and executing your first Rexx exec • Rexx execs versus edit macros • Edit macro capabilities and examples • Using Rexx with DB2 data • Examples to clone data, compare databases, generate utilities and more. 2 Agenda: • Overview of Anixter’s business, systems environment • The Rexx “Setup Problem” Knowing about Rexx but not knowing how to start using it. • Rexx execs versus Edit macros, including coding your first “script” macro. • The setup and syntax for accessing DB2 • Discuss examples for the purpose of providing tips for your Rexx execs • A few random tips along the way.
    [Show full text]
  • The Semantics of Syntax Applying Denotational Semantics to Hygienic Macro Systems
    The Semantics of Syntax Applying Denotational Semantics to Hygienic Macro Systems Neelakantan R. Krishnaswami University of Birmingham <[email protected]> 1. Introduction body of a macro definition do not interfere with names oc- Typically, when semanticists hear the words “Scheme” or curring in the macro’s arguments. Consider this definition of and “Lisp”, what comes to mind is “untyped lambda calculus a short-circuiting operator: plus higher-order state and first-class control”. Given our (define-syntax and typical concerns, this seems to be the essence of Scheme: it (syntax-rules () is a dynamically typed applied lambda calculus that sup- ((and e1 e2) (let ((tmp e1)) ports mutable data and exposes first-class continuations to (if tmp the programmer. These features expose a complete com- e2 putational substrate to programmers so elegant that it can tmp))))) even be characterized mathematically; every monadically- representable effect can be implemented with state and first- In this definition, even if the variable tmp occurs freely class control [4]. in e2, it will not be in the scope of the variable definition However, these days even mundane languages like Java in the body of the and macro. As a result, it is important to support higher-order functions and state. So from the point interpret the body of the macro not merely as a piece of raw of view of a working programmer, the most distinctive fea- syntax, but as an alpha-equivalence class. ture of Scheme is something quite different – its support for 2.2 Open Recursion macros. The intuitive explanation is that a macro is a way of defining rewrites on abstract syntax trees.
    [Show full text]
  • Concatenative Programming
    Concatenative Programming From Ivory to Metal Jon Purdy ● Why Concatenative Programming Matters (2012) ● Spaceport (2012–2013) Compiler engineering ● Facebook (2013–2014) Site integrity infrastructure (Haxl) ● There Is No Fork: An Abstraction for Efficient, Concurrent, and Concise Data Access (ICFP 2014) ● Xamarin/Microsoft (2014–2017) Mono runtime (performance, GC) What I Want in a ● Prioritize reading & modifying code over writing it Programming ● Be expressive—syntax closely Language mirroring high-level semantics ● Encourage “good” code (reusable, refactorable, testable, &c.) ● “Make me do what I want anyway” ● Have an “obvious” efficient mapping to real hardware (C) ● Be small—easy to understand & implement tools for ● Be a good citizen—FFI, embedding ● Don’t “assume you’re the world” ● Forth (1970) Notable Chuck Moore Concatenative ● PostScript (1982) Warnock, Geschke, & Paxton Programming ● Joy (2001) Languages Manfred von Thun ● Factor (2003) Slava Pestov &al. ● Cat (2006) Christopher Diggins ● Kitten (2011) Jon Purdy ● Popr (2012) Dustin DeWeese ● … History Three ● Lambda Calculus (1930s) Alonzo Church Formal Systems of ● Turing Machine (1930s) Computation Alan Turing ● Recursive Functions (1930s) Kurt Gödel Church’s Lambdas e ::= x Variables λx.x ≅ λy.y | λx. e Functions λx.(λy.x) ≅ λy.(λz.y) | e1 e2 Applications λx.M[x] ⇒ λy.M[y] α-conversion (λx.λy.λz.xz(yz))(λx.λy.x)(λx.λy.x) ≅ (λy.λz.(λx.λy.x)z(yz))(λx.λy.x) (λx.M)E ⇒ M[E/x] β-reduction ≅ λz.(λx.λy.x)z((λx.λy.x)z) ≅ λz.(λx.λy.x)z((λx.λy.x)z) ≅ λz.z Turing’s Machines ⟨ ⟩ M
    [Show full text]
  • Metaprogramming with Julia
    Metaprogramming with Julia https://szufel.pl Programmers effort vs execution speed Octave R Python Matlab time, time, log scale - C JavaScript Java Go Julia C rozmiar kodu Sourcewego w KB Source: http://www.oceanographerschoice.com/2016/03/the-julia-language-is-the-way-of-the-future/ 2 Metaprogramming „Metaprogramming is a programming technique in which computer programs have the ability to treat other programs as their data. It means that a program can be designed to read, generate, analyze or transform other programs, and even modify itself while running.” (source: Wikipedia) julia> code = Meta.parse("x=5") :(x = 5) julia> dump(code) Expr head: Symbol = args: Array{Any}((2,)) 1: Symbol x 2: Int64 5 3 Metaprogramming (cont.) julia> code = Meta.parse("x=5") :(x = 5) julia> dump(code) Expr head: Symbol = args: Array{Any}((2,)) 1: Symbol x 2: Int64 5 julia> eval(code) 5 julia> x 5 4 Julia Compiler system not quite accurate picture... Source: https://www.researchgate.net/ publication/301876510_High- 5 level_GPU_programming_in_Julia Example 1. Select a field from an object function getValueOfA(x) return x.a end function getValueOf(x, name::String) return getproperty(x, Symbol(name)) end function getValueOf2(name::String) field = Symbol(name) code = quote (obj) -> obj.$field end return eval(code) end function getValueOf3(name::String) return eval(Meta.parse("obj -> obj.$name")) end 6 Let’s test using BenchmarkTools struct MyStruct a b end x = MyStruct(5,6) @btime getValueOfA($x) @btime getValueOf($x,"a") const getVal2 = getValueOf2("a") @btime
    [Show full text]
  • Dynamic Economics Quantitative Methods and Applications to Macro and Micro
    Dynamic Economics Quantitative Methods and Applications to Macro and Micro J¶er^ome Adda and Nicola Pavoni MACT1 2003-2004. I Overview Dynamic Programming Theory ² { Contraction mapping theorem. { Euler equation Numerical Methods ² Econometric Methods ² Applications ² MACT1 2003-2004. I Numerical Methods Examples: Cake Eating Deterministic Cake eating: ² V (K) = max u(c) + ¯V (K c) c ¡ with { K: size of cake. K 0 ¸ { c: amount of cake consumed. c 0 ¸ Stochastic Cake eating: ² V (K; y) = max u(c) + ¯Ey0 V (K0; y0) c K0 = K c + y ¡ Discrete Cake eating: ² V (K; ") = max[u(K; "); ¯E 0 V (½K; "0)] ½ [0; 1] " 2 MACT1 2003-2004. I How do we Solve These Models? Not necessarily a closed form solution for V (:). ² Numerical approximations. ² MACT1 2003-2004. I Solution Methods Value function iterations. (Contraction Mapping Th.) ² Policy function iterations. (Contraction Mapping Th.) ² Projection methods. (Euler equation) ² MACT1 2003-2004. I Value Function Iterations Value Function Iterations Vn(S) = max u(action; S) + ¯EVn 1(S0) action ¡ Vn(:) = T Vn 1(:) ¡ Take advantage of the Contraction Mapping Theorem. If T is ² the contraction operator, we use the fact that d(Vn; Vn 1) ¯d(Vn 1; Vn 2) ¡ · ¡ ¡ n Vn(:) = T V0(:) This guarantee that: ² 1. successive iterations will converge to the (unique) ¯xed point. 2. starting guess for V0 can be arbitrary. Successive iterations: ² { Start with a given V0(:). Usually V0(:) = 0. { Compute V1(:) = T V0(:) { Iterate Vn(:) = T Vn 1(:) ¡ { Stop when d(Vn; Vn 1) < ". ¡ MACT1 2003-2004. I Value Function Iterations: Deterministic Cake Eating Model: ² V (K) = max u(c) + ¯V (K c) c ¡ Can be rewritten as: ² V (K) = max u(K K0) + ¯V (K0) K0 ¡ The iterations will be on ² Vn(K) = max u(K K0) + ¯Vn 1(K0) K0 ¡ ¡ example: take u(c) = ln(c).
    [Show full text]
  • Top 10 Uses of Macro %Varlist - in Proc SQL, Data Step and Elsewhere
    PhUSE 2016 Paper CS09 Top 10 uses of macro %varlist - in proc SQL, Data Step and elsewhere Jean-Michel Bodart, Business & Decision Life Sciences, Brussels, Belgium ABSTRACT The SAS® macro-function %VARLIST(), a generic utility function that can retrieve lists of variables from one or more datasets, and process them in various ways in order to generate code fragments, was presented at the PhUSE 2015 Annual Conference in Vienna. That first paper focused on generating code for SQL joins of arbitrary complexity. However the macro was also meant to be useful in the Data Step as well as in other procedure calls, in global statements and as a building block in other macros. The full code of macro %VARLIST is freely available from the PhUSE Wiki (http://www.phusewiki.org/wiki/index.php?title=SAS_macro-function_%25VARLIST). The current paper reviews and provides examples of the top ten uses of %VARLIST() according to a survey of real-life SAS programs developed to create Analysis Datasets, Summary Tables and Figures in post-hoc and exploratory analyses of clinical trials data. It is meant to provide users with additional information about how and where to use it best. INTRODUCTION SAS Macro Language has been available for a long time. It provides users with the tools to control program flow execution, execute repeatedly and/or conditionally single or multiple SAS Data steps, Procedure steps and/or Global statements that are aggregated, included in user-written macro definitions. However, the macro statements that implement the repeating and conditional loops cannot be submitted on their own, as “open code”, but only as part of calls to the full macro definition.
    [Show full text]
  • (Dynamic (Programming Paradigms)) Performance and Expressivity Didier Verna
    (Dynamic (programming paradigms)) Performance and expressivity Didier Verna To cite this version: Didier Verna. (Dynamic (programming paradigms)) Performance and expressivity. Software Engineer- ing [cs.SE]. LRDE - Laboratoire de Recherche et de Développement de l’EPITA, 2020. hal-02988180 HAL Id: hal-02988180 https://hal.archives-ouvertes.fr/hal-02988180 Submitted on 4 Nov 2020 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. THÈSE D’HABILITATION À DIRIGER LES RECHERCHES Sorbonne Université Spécialité Sciences de l’Ingénieur (DYNAMIC (PROGRAMMING PARADIGMS)) PERFORMANCE AND EXPRESSIVITY Didier Verna [email protected] Laboratoire de Recherche et Développement de l’EPITA (LRDE) 14-16 rue Voltaire 94276 Le Kremlin-Bicêtre CEDEX Soutenue le 10 Juillet 2020 Rapporteurs: Robert Strandh Université de Bordeaux, France Nicolas Neuß FAU, Erlangen-Nürnberg, Allemagne Manuel Serrano INRIA, Sophia Antipolis, France Examinateurs: Marco Antoniotti Université de Milan-Bicocca, Italie Ralf Möller Université de Lübeck, Allemagne Gérard Assayag IRCAM, Paris, France DOI 10.5281/zenodo.4244393 Résumé (French Abstract) Ce rapport d’habilitation traite de travaux de recherche fondamentale et appliquée en informatique, effectués depuis 2006 au Laboratoire de Recherche et Développement de l’EPITA (LRDE). Ces travaux se situent dans le domaine des langages de pro- grammation dynamiques, et plus particulièrement autour de leur expressivité et de leur performance.
    [Show full text]
  • The Paradigms of Programming
    The Paradigms of Programming Robert W Floyd Stanford University Today I want to talk about the paradigms of programming, how they affect our success as designers of computer programs, how they should be taught, and how they should be embodied in our programming languages. A familiar example of a paradigm of programming is the technique of structured programming, which appears to be the dominant paradigm in most current treatments of programming methodology. Structured programming, as formulated by Dijkstra [6], Wirth [27,29], and Parnas [21], among others,. consists of two phases. In the first phase, that of top-down design, or stepwise refinement, the problem is decomposed into a very small number of simpler subproblems. In programming the solution of simultaneous linear equations, say, the first level of decomposition would be into a stage of triangularizing the equations and a following stage of back-substitution in the triangularized system. This gradual decomposition is continued until the subproblems that arise are simple enough to cope with directly. In the simultaneous equation example, the back substitution process would be further decomposed as a backwards iteration of a process which finds and stores the value of the ith variable from the ith equation. Yet further decomposition would yield a fully detailed algorithm. The second phase of the structured· programming paradigm entails working upward from the concrete objects and functions of the underlying machine to the more abstract objects and functions used throughout the modules produced by the top-down design. In the linear equation example, if the coefficients of the equations are rational functions of one variable, we might first design a multiple-precision arithmetic representation Robert W Floyd, Turing Award Lecture, 1978: "The Paradigms of Programming," Communications of the ACM, VoI.22:8, August 1979, pp.455-460.
    [Show full text]
  • PL/I for AIX: Programming Guide
    IBM PL/I for AIX Programming Guide Ve r s i o n 2.0.0 SC18-9328-00 IBM PL/I for AIX Programming Guide Ve r s i o n 2.0.0 SC18-9328-00 Note! Before using this information and the product it supports, be sure to read the general information under “Notices” on page 309. Second Edition (June 2004) This edition applies to IBM PL/I for AIX 2.0.0, 5724-H45, and to any subsequent releases until otherwise indicated in new editions or technical newsletters. Make sure you are using the correct edition for the level of the product. Order publications through your IBM representative or the IBM branch office serving your locality. Publications are not stocked at the address below. A form for readers’ comments is provided at the back of this publication. If the form has been removed, address your comments to: IBM Corporation, Department HHX/H1 555 Bailey Ave San Jose, CA, 95141-1099 United States of America When you send information to IBM, you grant IBM a nonexclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. ©International Business Machines Corporation 1998,2004. All rights reserved. Contents Figures . vii COMPILE . .47 COPYRIGHT . .48 CURRENCY . .48 Part 1. Introducing PL/I on your DEFAULT . .48 workstation . .1 EXIT. .54 EXTRN . .54 Chapter 1. About this book . .3 FLAG . .55 FLOATINMATH. .55 Chapter 2. How to read the syntax GONUMBER . .56 GRAPHIC . .56 diagrams . .5 IMPRECISE . .56 INCAFTER . .57 Chapter 3.
    [Show full text]
  • 61A Extra Lecture 8 Homoiconicity Macros
    Announcements • Extra Homework 3 due Thursday 4/16 @ 11:59pm § Extending the object system created in Extra Lecture 6 • Extra Homework 4 due Thursday 4/23 @ 11:59pm (Warning: same day as Project 4 is due!) § Complete the three extensions to Project 4 described today 61A Extra Lecture 8 Thursday, April 2 2 A Scheme Expression is a Scheme List Scheme programs consist of expressions, which can be: • Primitive expressions: 2 3.3 true + quotient • Combinations: (quotient 10 2) (not true) The built-in Scheme list data structure (which is a linked list) can represent combinations Homoiconicity scm> (list 'quotient 10 2) (quotient 10 2) ! scm> (eval (list 'quotient 10 2)) 5 In such a language, it is straightforward to write a program that writes a program (Demo) 4 Homoiconic Languages Languages have both a concrete syntax and an abstract syntax (Python Demo) A language is homoiconic if the abstract syntax can be read from the concrete syntax (Scheme Demo) Macros Quotation is actually a combination in disguise (Quote Demo) 5 Macros Perform Code Transformations Problem 1 A macro is an operation performed on the source code of a program before evaluation Define a macro that evaluates an expression for each value in a sequence Macros exist in many languages, but are easiest to define correctly in homoiconic languages (define (map fn vals) (if (null? vals) Scheme has a define-macro special form that defines a source code transformation () (cons (fn (car vals)) (map fn (cdr vals))))) (define-macro (twice expr) > (twice (print 2)) ! (list 'begin expr
    [Show full text]
  • Application Note: Object-Oriented Programming in C
    Application Note Object-Oriented Programming in C Document Revision J April 2019 Copyright © Quantum Leaps, LLC info@s tate-machine .com www.state-machine.com Table of Contents 0 Introduction .................................................................................................................................................... 1 1 Encapsulation ................................................................................................................................................. 1 2 Inheritance ...................................................................................................................................................... 5 3 Polymorphism (Virtual Functions) ................................................................................................................ 8 3.1 Virtual Table (vtbl) and Virtual Pointer (vptr) ............................................................................................ 10 3.2 Setting the vptr in the Constructor ............................................................................................................ 10 3.3 Inheriting the vtbl and Overriding the vptr in the Subclasses ................................................................... 12 3.4 Virtual Call (Late Binding) ........................................................................................................................ 13 3.5 Examples of Using Virtual Functions ......................................................................................................
    [Show full text]