Coursehero >>
Kansas >>
Kansas State >>
CIS 764 Course Hero has millions of student submitted documents similar to the one below including study guides, homework solutions, papers, and exam answer keys.
Power The of XDoclet http://xdoclet.sourceforge.net Darren Landoll CIS 764 - Database System Design Kansas State University Overview Introduction Benefits XDoclet and Ant EJB Generation Web Generation Extending XDoclet DBills Example Darren Landoll, CIS 764 2 12/05/04 Introduction - What is XDoclet? Code generation tool Metadata added to source code (JavaDoc) Parses source code like JavaDoc 12/05/04 Darren Landoll, CIS 764 3 Introduction - Concepts Write one Java class for each major component Save time by using XDoclet to generate redundant code XDoclet s extensibility add custom modules 12/05/04 Darren Landoll, CIS 764 4 Benefits Reduce redundant work J2EE made easy Support for leading servers and tools Extensible Open, distributed development *Listed on XDoclet s home page [1] 12/05/04 Darren Landoll, CIS 764 5 XDoclet and Ant Ant task invokes XDoclet XDoclet tags in build.xml http://ant.apache.org <target name="ejbdoclet" depends="prepare"> <ejbdoclet destdir="${samples.gen-src.dir}" mergedir="parent-fake-to-debug" excludedtags="@version,@author,@todo" addedtags="@xdoclet-generated at ${TODAY},@copyright The XDoclet Team,@author XDoclet,@version ${version}" ejbspec="2.0" force="${samples.xdoclet.force}" verbose="false" > 12/05/04 Darren Landoll, CIS 764 6 EJB Generation ejbdoclet task Generates remote and/or local interfaces Generate value objects Generate BMP and/or CMP beans Generate XML descriptor files EJB example later in this presentation Darren Landoll, CIS 764 7 12/05/04 Web Generation webdoclet task Servlet info Authentication info Page mappings 12/05/04 Darren Landoll, CIS 764 8 [3] The servlet mappings can also be defined with the XDoclet JavaDoc tags as follows: * @web.servlet-mapping url-pattern="/Basic/*" * @web.servlet-mapping url-pattern="*.Basic" * @web.servlet-mapping url-pattern="/BasicServlet" ... */ public class BasicServlet extends HttpServlet { These would generate the following entries in the web.xml file: <servlet-mapping> <servlet-name>BasicServlet</servlet-name> <url-pattern>/Basic/*</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>BasicServlet</servlet-name> <url-pattern>*.Basic</url-pattern> </servlet-mapping> <servlet-mapping> <servlet-name>BasicServlet</servlet-name> <url-pattern>/BasicServlet</url-pattern> </servlet-mapping> 12/05/04 Darren Landoll, CIS 764 9 Web Example Extending XDoclet Non-J2EE Example: Command line arguments Create XDoclet template to generate argument handling code See: http://www.cais.ntu.edu.sg/~liuzh/xdoclet_tutorial/ 12/05/04 Darren Landoll, CIS 764 10 Extending XDoclet, Cont. public class CLArguments { ... ... /** * @clarguments.argname longname="inputurl" shortname="u" shortdesc="input_url */ protected String inputURL = null; /** * @clarguments.argname * longname="outputtype" * shortname="o * shortdesc="output_type */ protected String outputType = null; ... ... } 12/05/04 Darren Landoll, CIS 764 11 DBills Example Simple EJB for a bill management system Ant build.xml Directory/File structure EJB annotated with XDoclet tags Generated files 12/05/04 Darren Landoll, CIS 764 12 DBills build.xml <target name="xdoclet-generate" depends="init"> <taskdef name="ejbdoclet" classname="xdoclet.modules.ejb.EjbDocletTask" /> classpathref="base.path" <ejbdoclet destdir="${build.generate.dir}" excludedtags="@version,@author" ejbspec="${ejb.version}" mergedir="${src.resources.dir}/xdoclet" force="${xdoclet.force}" > <fileset dir="${src.ejb.dir}"> <include name="**/*Bean.java"/> </fileset> 12/05/04 Darren Landoll, CIS 764 13 DBills build.xml, cont. <packageSubstitution packages="session,entity" substituteWith="interfaces"/> <valueobject/> <remoteinterface/> <localinterface/> <homeinterface/> <localhomeinterface/> <entitybmp/> <entitycmp/> <session/> <deploymentdescriptor destdir="${build.dir}/META-INF"/> <jboss version="3.0" xmlencoding="UTF-8" typemapping="mySQL" datasource="java:/BigDDS" destdir="${build.dir}/META-INF" validateXml="false" /> </ejbdoclet> </target> 12/05/04 Darren Landoll, CIS 764 14 DBills Directory/File Structure build classes (compiled Java classes) generate (generated source files by XDoclet) META-INF (generated descriptor files) ejb-jar.xml jbosscmp-jdbc.xml jboss.xml src etc WEB-INF (static web descriptor files) main ejb (EJB source files) servlet (Servlet source files) web (JSP files) 12/05/04 Darren Landoll, CIS 764 15 Class header DBills EJB Source Code /** * BillAcctBean represents an account you have with a company * * @ejb.bean name="BillAcct" * local-jndi-name="ejb/BillAcctBean" * type="CMP" * view-type="local" * schema="billAcctSchema" * cmp-version="2.x" * * @ejb.pk class="java.lang.Object" * @ejb.persistence * table-name="bill_acct" * * @ejb.finder * query="SELECT OBJECT(a) FROM billAcctSchema as a" * signature="java.util.Collection findAll()" * * @ejb.value-object * name="BillAcct" * match="*" * extends="dbills.interfaces.AbstractValue **/ public abstract class BillAcctBean implements EntityBean 12/05/04 Darren Landoll, CIS 764 16 DBills EJB Source Code Method headers for each field in the table /** * Returns the billAcctDesc * @return the billAcctDesc * * @ejb.persistent-field * @ejb.persistence * column-name="bill_acct_desc" * sql-type="VARCHAR" * * @ejb.interface-method */ public abstract java.lang.String getBillAcctDesc(); /** * Sets the billAcctDesc * * @param java.lang.String the new billAcctDesc value * * @ejb.interface-method */ public abstract void setBillAcctDesc(java.lang.String billAcctDesc); 12/05/04 Darren Landoll, CIS 764 17 DBills Generated Files BillAcctBean BillAcctCMP (complete CMP entity bean) BillAcctLocalHome (interface) BillAcctLocal (interface) BillAcctValue (value object) Descriptor Files ejb-jar.xml jbosscmp-jdbc.xml jboss.xml 12/05/04 Darren Landoll, CIS 764 18 Review Benefits Integration with Ant EJB Generation Web Generation DBills Example 12/05/04 Darren Landoll, CIS 764 19 References [1] XDoclet home page http://xdoclet.sourceforge.net/xdoclet/index.html [2]Continuous Integration, Martin Fowler http://www.martinfowler.com/articles/continuousIntegration.html [3] Enhance J2EE component reuse with XDoclet, , IBM Developerworks http://www.arc-mind.com/downloads_protected/tutorials/xdoclet/ws-j2x-ltr.pdf [4] XDoclet Tutorial: A Short Tutorial on XDoclet Templates, Liu Zehua http://www.cais.ntu.edu.sg/~liuzh/xdoclet_tutorial/ [5] Use XDoclet to generate web service support files, IBM Developerworks http://www.arc-mind.com/downloads_protected/tutorials/xdoclet/xdoclet2.pdf 12/05/04 Darren Landoll, CIS 764 20
Find millions of documents here - Study Guides, Homework Solutions, Papers, Exam Answer Keys and more.
Course Hero has millions of course related materials that will enable you to learn better, faster and get an A in all your courses.
Below is a small sample set of documents:
ThePowerOfXDoclet.pdf
Path: Kansas State >> CIS >> 764 Fall, 2008
Description: The Power of XDoclet CIS 764 - Database System Design Darren Landoll Computing and Information Sciences Kansas State University 2/28/2005 Table of Contents 1. Introduction..3 1.1 1.2 Concepts.3 References ..3 2. Benefits.4 3. XDoclet and Ant..4 4....
764 Presentation.doc
Path: Kansas State >> CIS >> 764 Fall, 2008
Description: 1 Database Systems Engineering (CIS 764) CORE J2EE PATTERNS Submitted by: Bhamidimarri Varun Rao Department of Computer and Information Sciences 2 TABLE OF CONTENTS Introduction A pattern provides a common solution to a common problem and so, wi...
CIS-764.ppt
Path: Kansas State >> CIS >> 764 Fall, 2008
Description: CIS-764 Database Design Service-Oriented Architecture and Web-Services Binti Sepaha Overview Introduction Definitions/Concepts Steps in Building a Web-Service Web-Service by Example Benefits of Web-Services Conclusion References Introduction...
11-intro-to-ocl-and-use.pdf
Path: Kansas State >> CIS >> 771 Fall, 2008
Description: CIS 771: Software Specifications Lecture 11: Introduction to OCL & USE Copyright 2001-2002, Matt Dwyer, John Hatcliff, and Rod Howell. The syllabus and all lectures for this course are copyrighted materials and may not be used in other course settin...
07-dynamic-models.pdf
Path: Kansas State >> CIS >> 771 Fall, 2008
Description: CIS 771: Software Specifications Lecture 6: Dynamic Models in Alloy Copyright 2001-2002, Matt Dwyer, John Hatcliff, and Rod Howell. The syllabus and all lectures for this course are copyrighted materials and may not be used in other course settings ...
06-airport-model.pdf
Path: Kansas State >> CIS >> 771 Fall, 2008
Description: CIS 771: Software Specifications Lecture - Week 4: Airport Model Copyright 2001-2002, Matt Dwyer, John Hatcliff, and Rod Howell. The syllabus and all lectures for this course are copyrighted materials and may not be used in other course settings out...
14-advanced-ocl-expressions.pdf
Path: Kansas State >> CIS >> 771 Fall, 2008
Description: CIS 771: Software Specifications Lecture 14: Advanced OCL Expressions Copyright 2001-2002, Matt Dwyer, John Hatcliff, and Rod Howell. The syllabus and all lectures for this course are copyrighted materials and may not be used in other course settings...
MDA.doc
Path: Kansas State >> CIS >> 798 Fall, 2008
Description: MDA: MODEL DRIVEN ARCHITECTURE -A Research Paper Submitted to William Hankley, Ph. D, Professor Department of Computing and Information Science Kansas State University - In Partial Fulfillment of the Requirements for the course Software Models (CIS ...
muchnick-suncc.ppt
Path: Kansas State >> CIS >> 801 Spring, 2008
Description: The structure of an optimizing compiler String of characters Lexical analyzer String of tokens Parser Parse tree Semantic analyzer Parse tree Intermediate-code generator Medium-level intermediate code Optimizer Medium-level intermediate code Code Gen...
readme.txt
Path: Kansas State >> CIS >> 801 Spring, 2008
Description: / / CIS 801 - Translator II / / / / Homework #1: An Escape Analysis for the WHILE Language / / Robby / / / // Carrier = The carrier is represented as a lifted set of a triple of flattened var, flattened proc, and var. A mapping of a variable x to an...
Wig.txt
Path: Kansas State >> CIS >> 825 Fall, 2008
Description: * Final Deliverable * CIS 706 Group Final WIG Compiler * Group Members: * Nagini Indugula Ganeshan Jayaraman * Files Enclosed: * wig.l, wig.y, wig_tree.h, wig_tree.c, pretty.c , pretty.h, memory.c, memory.h, error.c , error.h, symbol.c, symbol.h, pre...
CIS 841 Verification and Validation.doc
Path: Kansas State >> CIS >> 841 Fall, 2008
Description: CIS 841 Verification and Validation The probability of detection report on the link list Submitted by: Kevin Sung Student number: 513112928 100 90 numbe r of faults. 80 70 60 50 40 30 20 10 0 100 0 0 0 0 0 0 0 detection probability (%) After a th...
FailureSets.pdf
Path: Kansas State >> CIS >> 841 Fall, 2008
Description: Darren Landoll CIS 841 Failure Set 1 15 10 5 Num2 0 -15 -10 -5 -5 -10 -15 Num1 0 5 10 15 Series1 Num1 Num2 Correct Results Faulty Results -10 -10 0 1 -9 -9 0 1 -8 -8 0 1 -7 -7 0 1 -6 -6 0 1 -5 -5 0 1 -4 -4 0 1 -3 -3 0 1 -2 -2 0 1 -1 -1 0 1 0 0 0 1...
results_fault.txt
Path: Kansas State >> CIS >> 841 Fall, 2008
Description: -10,-10,1 -10,-9,1 -10,-8,1 -10,-7,1 -10,-6,1 -10,-5,1 -10,-4,1 -10,-3,1 -10,-2,1 -10,-1,1 -10,0,1 -10,1,1 -10,2,1 -10,3,1 -10,4,1 -10,5,1 -10,6,1 -10,7,1 -10,8,1 -10,9,1 -10,10,1 -9,-10,2 -9,-9,1 -9,-8,1 -9,-7,1 -9,-6,1 -9,-5,1 -9,-4,1 -9,-3,1 -9,-2...
results_fault2.txt
Path: Kansas State >> CIS >> 841 Fall, 2008
Description: -10,-10,0 -10,-9,0 -10,-8,0 -10,-7,0 -10,-6,0 -10,-5,0 -10,-4,0 -10,-3,0 -10,-2,0 -10,-1,0 -10,0,0 -10,1,0 -10,2,0 -10,3,0 -10,4,0 -10,5,0 -10,6,0 -10,7,0 -10,8,0 -10,9,0 -10,10,0 -9,-10,2 -9,-9,0 -9,-8,0 -9,-7,0 -9,-6,0 -9,-5,0 -9,-4,0 -9,-3,0 -9,-2...
INTRO-Bogor-Simulation.pdf
Path: Kansas State >> CIS >> 842 Fall, 2008
Description: CIS 842: Specification and Verification of Reactive Systems Lecture INTRO-Bogor-Simulation: Executing (Simulating) Concurrent Systems in Bogor Copyright 2004, Matt Dwyer, John Hatcliff, and Robby. The syllabus and all lectures for this course are cop...
INTRO-Depth-Bounded.pdf
Path: Kansas State >> CIS >> 842 Fall, 2008
Description: CIS 842: Specification and Verification of Reactive Systems Lecture INTRO-Depth-Bounded: Depth-Bounded Depth-first Search Copyright 2004, Matt Dwyer, John Hatcliff, and Robby. The syllabus and all lectures for this course are copyrighted materials an...
Specs-Sequencing.pdf
Path: Kansas State >> CIS >> 842 Fall, 2008
Description: CIS 842: Specification and Verification of Reactive Systems # # #! # ! ! \" # ( ! ! \"! # ! ) ! \"! ! ! ! \"! ! ! $ \"! ! !% ! # \" # \' ! ! ! \"! \" ! \" !\" ( \"! # ! ! # Objectives ! \" # \" 1 Outline % % ! ! * \'( ! # \" \" ...
INTRO-Examples.pdf
Path: Kansas State >> CIS >> 842 Fall, 2008
Description: CIS 842: Specification and Verification of Reactive Systems Lecture INTRO-Examples: Simple BIR-Lite Examples Copyright 2004, Matt Dwyer, John Hatcliff, and Robby. The syllabus and all lectures for this course are copyrighted materials and may not be ...
AgentDefinition.doc
Path: Kansas State >> CIS >> 844 Fall, 2008
Description: Assignment #1: Agent Definition Paper Patrick Gallagher CIS 844 Spring 06 An intelligent agent is something that exhibits some form of autonomy, while also encompassing attributes such as being social, pro-activeness, and re-activeness. Overall, an ...
noninterfere-objects.pdf
Path: Kansas State >> CIS >> 890 Fall, 2008
Description: Stack-based Access Control and Secure Information Flow Anindya Banerjee Joint work with David A. Naumann, Stevens Instt. of Technology CIS 890, October 2004 / 1 Secure Information Flow Goal: Modular, static checking of security policies, e.g., cond...
SQA1.0.doc
Path: Kansas State >> CIS >> 895 Fall, 2008
Description: CIS 895 Online Pet Store Software Quality Assurance Version 1.0 Plan Software Quality Assurance Plan Online Pet Store Version 1.0 Submitted in partial fulfillment of the requirements of the degree Master of Software Engineering Nitesh Reddy Amir...
Project Plan2.0.doc
Path: Kansas State >> CIS >> 895 Fall, 2008
Description: CIS 895 Online Pet Store Project Plan Version 2.0 Project Plan Online Pet Store Version 2.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Nitesh Reddy Amireddy CIS 895 MSE Project Kansas State ...
Vision Document 1.0.doc
Path: Kansas State >> CIS >> 895 Fall, 2008
Description: CIS 895 Online Pet Store Vision Document Version 1.0 Vision Document Online Pet Store Version 1.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Nitesh Reddy Amireddy CIS 895 MSE Project Kansas...
Architecture Design 1.0.doc
Path: Kansas State >> CIS >> 895 Fall, 2008
Description: CIS 895 Online Pet Store Architecture Design Version 1.0 Architecture Design Online Pet Store Version 2.0 Submitted in partial fulfillment of the requirements of the degree of Master Software Engineering Nitesh Reddy Amireddy CIS 895 MSE Projec...
10-23-07-konyagin.pdf
Path: Kansas State >> MATH >> 10 Fall, 2008
Description: Sergei Konyagin Moscow State University Will present the 18th Isidore and Hilda Dressler Lecture Title of Talk: Good Distribution of the Values of Sparse Polynomials Modulo A Prime Tuesday, October 23, 2007 2:30 PM 102 Cardwell Hall Kansas State Univ...
nakamura-10-21-08.pdf
Path: Kansas State >> MATH >> 10 Fall, 2008
Description: The ALT-Pathway Project: Methods for Synthesizing the Student-Tutor Interaction Chris Nakamura Physics Education Research Seminar Tuesday October 21, 2008 Collaboration: Sytil Murphy, Nasser Juma Scott Stevens 1 Motiv...
ag-11-10-00-01.txt
Path: Kansas State >> MATH >> 10 Fall, 2008
Description: AGNET NOVEMBER 10, 2000 Pointing fingers at a natural pesticide S.Africa struggles to certify GM-free exports Commentary: bogus battle against biotechnology lesson in 21st century conflict Korea recalls Starlink contaminated food Plea over modified c...
DiffLap-11.pdf
Path: Kansas State >> MATH >> 11 Fall, 2008
Description: Math240 Elementary Dierential Equations Fall 2003 Kansas State University Written Assignment #11: Solveing Dierential Equations Using Laplace Transforms Due 5:00pm Tuesday, November 11, 2003 You are encouraged to collaborate with your colleagues. F...
09-11-norm-vs.pdf
Path: Kansas State >> MATH >> 11 Fall, 2008
Description: Lectures 9-11 2. Normed vector spaces Definition. Let K be one of the elds R or C, and let X be a K-vector space. A norm on X is a map X x x [0, ) with the following properties (i) x + y x + y , x, y X; (ii) x = | x , x X, K; (iii) x = 0 = ...
outline.160.doc
Path: Kansas State >> MATH >> 160 Fall, 2008
Description: MATH 160 Introduction to Contemporary Mathematics Catalog Description: (3) I, II, S. Mathematics as used in the contemporary world. Combinatorics and probability; descriptions of data; graph theory; and various additional topics selected by the indiv...
20-measbl.pdf
Path: Kansas State >> MATH >> 20 Fall, 2008
Description: Lecture 20 3. Measurable spaces and measurable maps In this section we discuss a certain type of maps related to -algebras. Definitions. A measurable space is a pair (X, A) consisting of a (non-empty) set X and a -algebra A on X. Given two measurable...
m221pff04soln16-20.pdf
Path: Kansas State >> MATH >> 20 Fall, 2008
Description: ...
395.pdf
Path: Kansas State >> MATH >> 395 Fall, 2008
Description: -210J. Inv. Ill-Posed Problems, Vol. 8, No. 2, pp. 205210 (2000) c VSP 2000 Finding small inhomogeneities from scattering data A. G. RAMM Received January 18, 1999 Abstract A new method for nding small inhomogeneities from surface scattering data i...
399.pdf
Path: Kansas State >> MATH >> 399 Fall, 2008
Description: y x ) \" w 0 0 $ u0 t 0 s $ r 8 8 8 8 Fd1s) 15s7h~1509h5`f %e )X%9G%5D57F $ ! t ! ! A 1 ! F3g)!\"VFG2XBF3UBF2FFG...
498.pdf
Path: Kansas State >> MATH >> 498 Fall, 2008
Description: Nonlinear Funct. Anal. & Appl., Vol. 11, No. 4 (2006), pp. 655658 COMPACTNESS OF EMBEDDINGS A. G. Ramm Abstract. An improvement of the authors result, proved in 1961, concerning necessary and sucient conditions for the compactness of embedding oper...
500.pdf
Path: Kansas State >> MATH >> 500 Fall, 2008
Description: Jour. Math. Anal. Appl., 325, (2007), 490-495. 1 Ill-posed problems with unbounded operators A.G. Ramm Mathematics Department, Kansas State University, Manhattan, KS 66506-2602, USA ramm@math.ksu.edu, fax 785-532-0546, tel. 785-532-0580 Abstract Le...
501.pdf
Path: Kansas State >> MATH >> 501 Fall, 2008
Description: Dynamical systems method (DSM) for selfadjoint operators A.G. Ramm Mathematics Department, Kansas State University, Manhattan, KS 66506-2602, USA ramm@math.ksu.edu http:/www.math.ksu.edu/ ramm Abstract Let A be a selfadjoint linear operator in a Hilb...
506.pdf
Path: Kansas State >> MATH >> 506 Fall, 2008
Description: Electromagnetic wave scattering by many small particles A.G. Ramm Mathematics Department, Kansas State University, Manhattan, KS 66506-2602, USA ramm@math.ksu.edu Abstract Scattering of electromagnetic waves by many small particles of arbitrary shap...
EECE 511.pdf
Path: Kansas State >> MATH >> 511 Fall, 2008
Description: EECE 511 Circuit Theory II Required EE, CmpE 2004-2006 Catalog Data: EECE 511. Circuit Theory II. (3) I, II. Analysis of electric circuits using differential equations, transform techniques and linear algebra. Prerequisites: MATH 240, STAT 510, and...
Fall03.doc
Path: Kansas State >> MATH >> 511 Fall, 2008
Description: EECE 511 CIRCUIT THEORY II Fall Semester 2003 MWF 10:30 am to 11:20 am RA 1052 Kansas State University Electrical and Computer Engineering Department Instructor Anil Pahwa Professor, Electrical & Computer Engineering 2075 Rathbone Hall Tel: 785-532-...
511.pdf
Path: Kansas State >> MATH >> 511 Fall, 2008
Description: Phys. Lett A368, N1-2, (2007), 164-172. 1 Wave scattering by small impedance particles in a medium A.G. Ramm Mathematics Department, Kansas State University, Manhattan, KS 66506-2602, USA ramm@math.ksu.edu Abstract The theory of acoustic wave scatt...
512.pdf
Path: Kansas State >> MATH >> 512 Fall, 2008
Description: Annal. Polon. Mathem., 92, N1, (2007), 49-54 1 A symmetry problem A.G. Ramm Abstract Consider the Newtonian potential of a homogeneous bounded body D R3 with known constant density and connected complement. If this potential equals to c/|x| in ...
515.pdf
Path: Kansas State >> MATH >> 515 Fall, 2008
Description: J. Stat. Phys., 127, N5, (2007), 915-934. 1 Distribution of particles which produces a smart material A.G. Ramm Mathematics Department, Kansas State University, Manhattan, KS 66506-2602, USA ramm@math.ksu.edu Abstract If Aq (, , k) is the scatterin...
520.pdf
Path: Kansas State >> MATH >> 520 Fall, 2008
Description: Internat. Journ. Tomogr and Statist., 8, (2008), 25-31. 1 Distribution of particles creating smart material A.G. Ramm Mathematics Department, Kansas State University, Manhattan, KS 66506-2602, USA ramm@math.ksu.edu, Abstract A method is given for c...
551-f02.pdf
Path: Kansas State >> MATH >> 551 Fall, 2008
Description: Applied Matrix Theory MATH 551 - Fall 2002 Syllabus Instructor: Charles Moore Oce: Cardwell 238 Phone: 532-0576 Text: Linear Algebra, Ideas and Applications, by Richard C. Penney, John Wiley & Sons, 1998. This is available at the campus bookstore. Pu...
551-u02.pdf
Path: Kansas State >> MATH >> 551 Fall, 2008
Description: Syllabus for Math 551 Applied Matrix Theory Summer 2002, Reference #02610, MTWUF 8:40 am, CW 122 Instructor: Dr. Hassan Mohammad, CW 46C Phone: 532-0568 Oce hours: MTWUF 9:40 - 10:40 am (right after class) and by appointment Text: Linear Algebra: Ide...
551-f99.pdf
Path: Kansas State >> MATH >> 551 Fall, 2008
Description: ...
outline.551.pdf
Path: Kansas State >> MATH >> 551 Fall, 2008
Description: MATH 551 Applied Matrix Theory Required of CS, IE, ME Catalog Description: (3) I, II, S. Matrix algebra, solutions to systems of linear equations, determinants, vector spaces, linear transformations, eigenvalues, linear programming, approximation tec...
slides-syllabus.pdf
Path: Kansas State >> MATH >> 570 Fall, 2008
Description: CIS 570Introduction to Formal Language TheoryFall 2008 Instructor Oce Phone E-mail Personal Website Course Website Lectures Help Sessions Oce Hours Alley Stoughton N214 7855327906 stough@cis.ksu.edu people.cis.ksu.edu/~ stough/ people.cis.ksu.edu/~ s...
outline.655.pdf
Path: Kansas State >> MATH >> 655 Fall, 2008
Description: MATH 655 Elementary Numerical Analysis I Required of CS Catalog Description: (3) I, II, S. Error analysis, root finding, interpolation, approximation of functions, numerical integration and differentiation, systems of linear equations. Prerequisites:...
721-f07.pdf
Path: Kansas State >> MATH >> 721 Fall, 2008
Description: Introduction to Real Analysis - Math 721 - Fall 07 Professor: Virginia Naibo (vnaibo@math.ksu.edu - 232 CW) Prerequisites: MATH 634 or graduate standing. Math 721 is a prerequisite for Math 821, which is one of the courses on which the qualifying exa...
745-u04.pdf
Path: Kansas State >> MATH >> 745 Summer, 2008
Description: To: Graduate students and their advisors From: Huanan Yang In the Summer of 2004, I will teach the course MATH 745, Ordinary Differential Equations. The textbook for this course will be Dierential Equations, Dynamical Systems, and Linear Algebra by ...
791-f03.txt
Path: Kansas State >> MATH >> 791 Fall, 2008
Description: Math 791. Intro to Mathematics Education Andrew Bennett, Fall 2003 This course will cover fundamental topics in mathematics education research, including such areas as problem solving and assessing levels of understanding of mathematics. It is intend...
802-s02.pdf
Path: Kansas State >> MATH >> 802 Spring, 2008
Description: Numerical Solutions of Differential Equations, II MATH 802, Spring 2002 INSTRUCTOR: Dr. Huanan Yang TEXTBOOK: K. W. Morton and D. F. Mayers (1994), Numerical Solutions of Partial Differential Equations. OFFICE: Cardwell 111 OFFICE PHONE: 532-0589 SUB...
824-s07.txt
Path: Kansas State >> MATH >> 824 Spring, 2008
Description: MATH 823-824. Geometric Function and Measure Theory: FALL 2006 & Spring 2007, Pietro Poggi-Corradini This class is foundational for anyone interested in studying analysis, geometry, partial differential equations, and applied math. The pace will be s...
825-f99.pdf
Path: Kansas State >> MATH >> 825 Fall, 2008
Description: ...
825-f04_826-s05.pdf
Path: Kansas State >> MATH >> 825 Fall, 2008
Description: Math 825-6 Complex Analysis Fall04-Spring05 Pietro Poggi-Corradini Oce: CW 236 Phone: (785) 532-0569 Hours: by appointment or whenever you nd me in. Title: Complex variables and geometric function theory Prerequisite: Math 822 (or instructor permissi...
828-s08.pdf
Path: Kansas State >> MATH >> 828 Spring, 2008
Description: Course description for MATH 828: Classical and Modern Fourier Analysis II Spring 2008 NAME OF THE COURSE: Classical and Modern Fourier Analysis II SEMESTER: Spring 2008 INSTRUCTOR: Prof. Diego Maldonado CREDITS: 3 PREREQUISITE: MATH 827 Classical and...
841-s04.txt
Path: Kansas State >> MATH >> 841 Spring, 2008
Description: MATH 841, Differential Equations II, Spring 2004 This course is an introduction to the theory, and more importantly, the techniques, of differential equations. The course is a continuation of Math 840, Differential Equations I, although it would be p...
assignment3.txt
Path: Kansas State >> MATH >> 841 Spring, 2008
Description: #include \"conio.h\" #include \"iostream.h\" #include \"math.h\" #define MAX 5000 int main() { int i=0,k=0,answer=0, test=0; float theta = 0.0; float q[64], p[64], sum[64]; int found[64]; int error[6]; for(int z = 0; z < 64; z+) { found[z] = 0; q[z] = 0.0;...
852-f01.pdf
Path: Kansas State >> MATH >> 852 Fall, 2008
Description: MATH 852, Functional Analysis, Fall 2001 This course will serve as a basic introduction to the theory and methods of functional analysis with an emphasis on the numerous applications to analysis and connections to other areas of mathematics. We will ...
861-f02.txt
Path: Kansas State >> MATH >> 861 Fall, 2008
Description: Numerical Analysis, I MATH 861, Fall 2002 INSTRUCTOR: Dr. Huanan Yang OFFICE: Cardwell 111 OFFICE PHONE: 532-0589 SUBJECT: The importance of scientific computation is growing day by day due to the rapid development of computer technology and the requ...
861-f04.pdf
Path: Kansas State >> MATH >> 861 Fall, 2008
Description: SYLLABI FOR Math 861. Numerical Analysis I, Fall 2004 Instructor: Huanan Yang at CW111, Phone No. 532-0578 1. Concepts of scientic computing and numerical analysis: Computer representation of real numbers. Analysis of errors; Loss of signicance. ...
862-s05.pdf
Path: Kansas State >> MATH >> 862 Spring, 2008
Description: Numerical Analysis, II MATH 862, Spring 2005 INSTRUCTOR: Dr. Huanan Yang TEXTBOOK: Numerical Linear Algebra, by Lloyd N. Trefethen and David Bau, III, 1997 SIAM, ISBN 0-89871-361-7 (pbc) OFFICE: Cardwell 111 OFFICE PHONE: 532-0589 SUBJECT: Totally in...
991-s08.pdf
Path: Kansas State >> MATH >> 991 Fall, 2008
Description: Yan Soibelman, Spring 2008. Math 991 - Topics in Algebra The book for the course is: S. Donaldson, P. Kronheimer, The geometry of four-manifolds. Along with standard theorems, the course will include: 1) Yang-Mills theory on 4d manifolds 2) Wall-cros...
991-s06.txt
Path: Kansas State >> MATH >> 991 Fall, 2008
Description: MATH 991 Rigid analytic geometry with applications to mirror symmetry Yan Soibelman, Spring 2006 The book* for the course is: no book Along with standard theorems, the course will include: 1) Rigid analytic spaces in the sense of Berkovich 2) Skeleta...
992-s08.pdf
Path: Kansas State >> MATH >> 992 Fall, 2008
Description: MATH 992 - Topics in Complex Dynamics Professor Pietro Poggi-Corradini, Spring of 2008 No required text, but these will be relevant texts: 1. Dynamics in One Complex Variable: Third Edition. (Annals of Mathematics Studies) by John Milnor. http:/www.a...
992-s02.pdf
Path: Kansas State >> MATH >> 992 Fall, 2008
Description: MATH 992 - Topics in Analysis Marianne Korten - Spring 2002 Along with standard theorems, the course will include: 1.BV Functions and sets of finite perimeter 2.Differentiability and approximation by C^1 functions 3.Introduction to varifolds. No book...
992-f01.pdf
Path: Kansas State >> MATH >> 992 Fall, 2008
Description: Introduction to Geometric Measure Theory MATH 992, Fall 2001 Marianne Korten In this course we will introduce the concepts of Hausdor measures and dimensions. These lower dimensional measures allow to measure certain very small sets, and arise natur...