Geometry.Net - the online learning center
Home  - Basic_M - Ml Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 3     41-60 of 113    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

         Ml Programming:     more books (49)
  1. Elementary Standard ML by Greg Michaelson, 1995-12
  2. Implementation and Application of Functional Languages: 17th International Workshop, IFL 2005, Dublin, Ireland, September 19-21, 2005, Revised Selected Papers (Lecture Notes in Computer Science)
  3. Implementation and Application of Functional Languages: 16th International Workshop, IFL 2004, Lübeck, Germany, September 8-10, 2004, Revised Selected Papers (Lecture Notes in Computer Science)
  4. Implementation and Application of Functional Languages: 18th International Symposium, IFL 2006, Budapest, Hungary, September 4-6, 2006, Revised Selected Papers (Lecture Notes in Computer Science)
  5. The essence of ML (LFCS report series. University of Edinburgh. Dept. of Computer Science. Laboratory for Foundations of Computer Science) by John C Mitchell, 1987
  6. Standard ML (LFCS report series. University of Edinburgh. Department of Computer Science. Laboratory of Foundations of Computer Science) by Robert Harper, 1986
  7. Papers on Poly/ML (Technical report. University of Cambridge. Computer Laboratory) by David C. J Matthews, 1989
  8. Changes to the standard ML core language (LFCS report series. University of Edinburgh. Dept. of Computer Science. Laboratory for Foundations of Computer Science) by R Milner, 1987
  9. Compiling ML to DACTL: Early experiences (Internal report, SYS-C. University of East Anglia. School of Information Systems) by K Hammond, 1986
  10. A persistent storage system for poly and ML (Technical report. University of Cambridge. Computer Laboratory) by David C. J Matthews, 1987
  11. The semantics of standard ML: Version 1 (LFCS report series. University of Edinburgh. Dept. of Computer Science. Laboratory for Foundations of Computer Science) by Robert Harper, 1987
  12. Introduction to standard ML (LFCS report series. University of Edinburgh. Dept. of Computer Science. Laboratory for Foundations of Computer Science) by Robert Harper, 1986
  13. C & Unix - Tools for Software Design - Teachers Manual by ML Barrett, 1996-09-04
  14. The Little MLer by Matthias Felleisen, Daniel P. Friedman, 1997-12-19

41. [Standard ML Programming] - CoderForums - Programming Forums
Pages1 Standard ml programming. (Click here to view the original thread with full colors/images). Posted by edeita2 Hi, I`m totally new to ML.
http://coderforums.com/archive/topic/3254-1.html
Pages:
Standard ML programming
(Click here to view the original thread with full colors/images)
Posted by:
Hi, I`m totally new to ML.
The problem: create a student type and two student records:
Lastname id gpa
Smith 12345 3.6
Jones 98765 3.2
write a function that takes two student records and returns the last name with the higher Gpa. Here`s my way of solution: (using putty)
- getlastname( #gpa(r1), #gpa(r2));
stdIn:50.1-50.33 Error: operator and operand don't agree [tycon mismatch]
operator domain: student * student operand: real * real in expression: I appreciate if anyone tells me where I go wrong! thanks Posted by: Smerdyakov Do you understand what the error message means? Posted by: quote: Originally posted by Smerdyakov Do you understand what the error message means? I think I have realized that I was using wrong parameters and I have corrected it. It should be getlastname(r1, r2) which is yielding the correct answer. vB Easy Archive Final - Created by Xenon and modified/released by SkuZZy from the Web Scripts Directory

42. HELP WITH ML PROGRAMMING PROBLEM
HELP WITH ml programming PROBLEM by funismee@EMAIL PROTECTED (nikki) Jan 30, 2004 at 0902 PM 2 Posts in Topic HELP WITH ml programming PROBLEM.
http://www.talkaboutprogramming.com/group/comp.lang.ml/messages/6692.html
Other Recommended Forums:
Computing

Data Bases

Electronic Equipment

Mac
... Ml HELP WITH ML PR...
Post 1 of 2 Topic 261 of 356
HELP WITH ML PROGRAMMING PROBLEM
by funismee@[EMAIL PROTECTED] (nikki) Jan 30, 2004 at 09:02 PM
Dear all, I am starting out leaning ML and I an using SML/NJ as my complier. I want to implement the binary search algorithm in ML. Can anyone help me out? Thanks. Post 1 of 2 Topic 261 of 356
2 Posts in Topic: HELP WITH ML PROGRAMMING PROBLEM funismee@[EMAIL PROTECTED Re: HELP WITH ML PROGRAMMING PROBLEM skral@[EMAIL PROTECTED]
Post A Reply:
About
Advertising Contact Frequently Asked Questions ... Signup Thu Jun 10 17:51:16 EDT 2004.

43. ML Programming Language :: Online Encyclopedia :: Information Genius
ml programming language. Online Encyclopedia ML (standing for MetaLanguage ) is a general-purpose functional programming language
http://www.informationgenius.com/encyclopedia/m/ml/ml_programming_language.html
Quantum Physics Pampered Chef Paintball Guns Cell Phone Reviews ... Science Articles ML programming language
Online Encyclopedia

ML (standing for " Meta-Language ") is a general-purpose functional programming language developed by Robin Milner and others in the early 1980s at Edinburgh University. ML is often referred to as an impure functional language, because it permits imperative programming, and therefore, side-effects, unlike other functional programming languages such as Haskell Features of ML include automatic memory management through garbage collection, a static type-safe, polymorphic type system type inference algebraic data types pattern matching , and a sophisticated module system with functions on modules ( functors Type inference is a technique which allows the compiler to determine from the code the type of each variable and symbol used in the program, without having to explicitely declare them. This allows for a compact, yet easily readable code. Algebraic data types allow to define new types as data structures, and combine them in a hierarchical fashion, Pattern matching is the capacity for a function to deconstruct algebraic data types, into its different subtypes, in order to apply a particular computation for each subtype.

44. Elements Of ML Programming, ML97 Edition (2nd Edition)
Textbook Binding Elements of ml programming, ML97 Edition (2nd Edition) By Jeffrey D. Ullman. Elements of ml programming, ML97 Edition (2nd Edition).
http://www.bitworm.com/detail/0137903871/Elements_of_ML_Programming_ML97_Edition
Elements of ML Programming, ML97 Edition (2nd Edition)
Computer Books
Find:
Search Computer Books
Search All Topics
Elements of ML Programming, ML97 Edition (2nd Edition)
Jeffrey D. Ullman
Textbook Binding
Published: December, 1997
ISBN: 0137903871
Views This Month: 4
By Jeffrey D. Ullman
Buy Now Price:
Qty:
- or -
View at Amazon.com
Usually ships within 24 hours
You may also be interested in:
What people are saying... A decent overview of ML
Rating: 3 out of 5.
While I find functional programming, and ML/SML in particular to be most annoying, this particular book is helpful in illuminating some key concepts of the paradigm. However, there are certainly sections where complex concepts are either glossed over, or explained in a very confusing manner (take Section 5.3.1, for example, which attempts, in a somewhat confusing manner, the limitations of polymorphic functionality in ML and it's relationship to types. A dense topic to be sure, but also poorly explained.) Additionally, there are some technical errors to be found in the book (eg: things that 'dont work' which really do, incorrect error messages, etc), which I mostly attribute to SML having been updated since the author published the book (not really his fault).

45. Exercise 3: Basic ML Programming
Exercise 3 Basic ml programming. Functions with Many Arguments. You can also define functions in ML that (appear to) take more than one argument.
http://cs.anu.edu.au/student/comp8033/ex03.html

ANU
FEIT DCS Jim Grundy ... Assignments
Exercise 3: Basic ML Programming
Functions with Many Arguments
You can also define functions in ML that (appear to) take more than one argument. The format for such a definition is as follows: fun name var var expression var , var For example, try typing in the following definition of the function add fun add x y = x + y; Use the function to add together a few numbers, for example: add 1 2 You can think of this form of definition as a short hand for the following, longer, form. val name = fn var var
expression var var The longer form of the definition makes it explicit that name is not, in fact, defined to be a function taking multiple arguments, but as a function that takes just one argument and returns another function as its result. For example, try evaluating add 5 , then take the result ( it ) and apply it to . Use this feature to define a function inc in terms of add
Recursive Functions
Functions may be defined recursively in ML. For example, consider the following definition of factorial fun factorial n = if n = then 1 else n * (factorial (n - 1));

46. Book: Elements Of ML Programming
CSC, Elements of ml programming. Title Elements of ml programming Edition ISBN 0131848542 Author Jeffrey D. Ullman. Published Englewood
http://www.csclub.uwaterloo.ca/office/books/0131848542.html
Elements of ML programming Office Staff Books Title: Elements of ML programming
Edition:
ISBN:
Author:
Jeffrey D. Ullman.
Published: Englewood Cliffs, N.J. : Prentice Hall, c1994.
Home

About

Events

Docs
...
Stats
This page was generated on 2004-06-10 at 03:00:09.
Please direct website comments to the Webmaster

47. Prentice Hall - Elements Of ML Programming ML97 Edition:(United States Edition)
Prentice Hall,Elements of ml programming ML97 Edition(United States Edition) 2nd Edition Paper,JD Ullman,0-13-790387-1,0137903871 - Mehr als 70.000
http://www.pearson.ch/pageid/34/artikel/90387PH/PrenticeHall/0137903871/Elements
Kontakt Jobs Warenkorb Login ... Produkt Index Schnellsuche: Home Higher Education Prentice Hall Elements of ML Programming ML97 Edition:(United States Edition) 2nd Edition - Paper Elements of ML Programming
Unsere Verlage
Higher Education
  • Addison-Wesley Benjamin Cummin bloc notes publishing ... Software
    Elements of ML Programming ML97 Edition:(United States Edition) 2nd Edition - Paper
    Seite senden!
    Titel: Elements of ML Programming ML97 Edition:(United States Edition) 2nd Edition - Paper Reihe: Prentice Hall Author: J.D. Ullman Verlag: Prentice Hall Sprache: Englisch Seiten: Erschienen: Januar 1998 ISBN: Unser Service für Dozenten document.Form1._ctl15ctl83ctl19_State.value=0; Bestellen ISBN Artikel Verlag S ... V Elements of ML Programming ML97 Edition:(United States Edition) 2nd Edition - Paper Prentice Hall E
    Elements of ML Programming
    For sophomore through graduate level courses covering an introduction to the fundamentals of ML programming or as a supplement for programming languages, functional programming, or compiler courses. Written by renowned computer science educator and researcher Jeffrey Ullman, this text assumes no previous knowledge of ML or functional programming. This second edition has been heavily revised and updated using ML 97. This is the first book that offers BOTH a highly accessible, step-by-step introductory tutorial on ML programming and a complete explanation of advanced features. The author uses a wide variety of program examples to show how ML can be used in a variety of applications. More sophisticated programs and advanced concepts make this book usable in a number of courses for self-study or class discussion.

48. Elements Of ML Programming, Second Edition: Errata
Elements of ml programming, 2nd Edition (ML97). Errata. p. 11, l. 6 1*4096 + 2*256 + 3*16 + 4 = 4660 (Thanks to Steve Arons). p. 25, Fig.
http://www.cs.okstate.edu/~jonyer/teaching/3363/Errata - Ullman.htm
Elements of ML Programming, 2nd Edition (ML97)
Errata
p. 11, l. 6: 1*4096 + 2*256 + 3*16 + 4 = 4660 (Thanks to Steve Arons). p. 25, Fig. 2.3: Header round should be round(x) (Thanks to Sing Lo). p. 25, Fig. 2.3: Apparently in SML/NJ Version 110, rounding of half integers is upward in magnitude. Thus, round(~3.5) is now ~4 (Thanks to Cong-cong Xing). p. 25, last line: val it = #"a" : char (Thanks to John M. Linebarger). p. 64, Ex. 3.2.1(f): Because there are complications due to the fact that real is not an equality type and the function null is not introduced until p. 319, the stipulation ``list of reals,'' is changed to ``list of strings'' (Thanks to Dirk Ullrich). p. 83, Exercise 3.4.4: This exercise should refer to Exercise 3.2.1(f), not (e) (Thanks to David J. Meppelink). p. 66: Function reverse needs a semicolon at the end (Thanks to Simone Scalabrin). p. 75, l. 4: Should refer to Exercise 3.2.1(e) Also, l. 5 should refer to Exercise 3.2.1(f). (Thanks to Tom Maynard). p. 76, Exercise 3.3.13: Should refer in the first line to Exercise 3.3.11 (Thanks to Nick Russo). p. 94ff, Section 3.6.5: I received an email from Yekaterina Karatsuba. She is the daughter of Anatoly Karatsuba, one of the authors of the paper by Karatsuba and Ofman, from which the main idea of this section was taken. She points out that while both had their names on the paper, the result in question about a fast way to perform multiplication was attributed in the paper to her father alone. Thus, the idea should have been referred to simply as Karatsuba's algorithm.

49. Pearson Education
Elements of ml programming, ML97 Edition (International Edition) 2nd Edition Jeffrey Ullman, James Loebbecke 013080391X (Paperback) Jan 1998, 383 pages £39.99
http://www.pearsoned.co.uk/Academics/Book.asp?prodID=105330&d=CM&sd=CMPO

50. Pearson Education
to Programming using SML provides a thorough introduction to the principles of programming and program design using the Standard ml programming language.
http://www.pearsoned.co.uk/Academics/Course.asp?d=CM&sd=CMPO&crs=CS0611

51. Encyclopedia: ML Programming Language
Updated Apr 27, 2004. Encyclopedia ml programming language. ML is a generalpurpose functional programming language developed by
http://www.nationmaster.com/encyclopedia/ML-programming-language

Supporter Benefits
Signup Login Sources ... Pies
Factoid #56 Many Americans live alone - America leads the world in one person households Interesting Facts Make your own graph:
Hold down Control and click on
several. Compare All Top 5 Top 10 Top 20 Top 100 Bottom 100 Bottom 20 Bottom 10 Bottom 5 All (desc) in category: Select Category Agriculture Crime Currency Democracy Economy Education Energy Environment Food Geography Government Health Identification Immigration Internet Labor Language Manufacturing Media Military Mortality People Religion Sports Taxation Transportation Welfare with statistic: view: Correlations Printable graph / table Pie chart Scatterplot with ... * Asterisk means graphable.
Added May 21
  • Mortality stats Multi-users ½ price Catholic stats

  • Top Graphs
  • Richest Most Murderous Most Populous Most Militaristic ...
  • More Stats
    Categories
  • Agriculture Background Crime Currency ... Welfare
  • Updated: May 30, 2004
    Encyclopedia : ML programming language
    Sponsored links:
    Category:Programming languages
    ML is a general-purpose functional programming language developed by Robin Milner and others in the late 1970s at Edinburgh University. Historically, ML stands for

    52. SML/NJ Literature
    Elements of ml programming, ML97 Edition. Author Jeffrey D. Ullman. Programming with Standard ML. Authors Chris Clack, Colin Myers, and Ellen Poon.
    http://www.cse.ohio-state.edu/~gb/SML/smlnj/doc/literature.html
    SML/NJ Literature
    Summary
    Tutorials
    Introduction to Standard ML
    Author: Robert Harper, CMU
    Using the SML/NJ System
    Author: Peter Lee, CMU
    Four Lectures on Standard ML
    Author: Mads Tofte, DIKU
    Essentials of Standard ML Modules
    Author: Mads Tofte, DIKU
    Tips for Computer Scientists On Standard ML
    Author: Mads Tofte, DIKU
    A Gentle Introduction to ML
    Author: Andrew Cumming, Napier University
    Books
    Several textbooks on SML programming are available. We recommend the first two in this list. ML for the Working Programmer assumes a little more programming experience than Elements of ML Programming , however either one ought to be adequate for learning the language. Both of these books are in their second editions, now covering the SML '97 version of the language and Basis.
    ML for the Working Programmer (2nd edition)
    Author: Larry C. Paulson

    53. InformIT Buch : Elements Of ML Programming, ML97 Edition - Ullman, Jeffrey D.
    No previous knowledge of ML or functional programming is assum Verzeichnis. Elements of ml programming, ML97 Edition. Autor Ullman, Jeffrey D.
    http://www.informit.de/0137903871.html
    keypressed = false; Alle Produkte deutsche Bücher english books eBooks Training Software Schnäppchen Elements of ML Programming, ML97 Edition
    Computing
    Operating Systems Client/Server Computer Hardware ... Computer Certificati...
    Elements of ML Programming, ML97 Edition
    Autor: Ullman, Jeffrey D.
    ISBN: Verlag: Pearson International Seiten: Jahr: Sprache: Englisch Preis: Leserprofil Einsteiger Experten Lieferbar innerhalb von 10 bis 14 Tagen.
    Versandkostenfrei
    Produktinfo
    Written by a well-known computer science education and researcher. No previous knowledge of ML or functional programming is assumed. This is the first book that offers BOTH a highly accessible, step-by-step introductory tutorial on ML programming and a complete reference to, and explanation of, advanced features. The author uses a wide variety of digestible program examples to bring the reader along at a reasonable pace. More sophisticated programs and advanced concept topics balance out a book that is usable in a number of courses and settings for either self-study or class discussion. Zu diesem Produkt gibt es noch keine Produktbewertung.

    54. SML '97
    Full documentation for the Basis Library is available online. Text Books. The following new editions of ml programming textbooks describe SML 97.
    http://www.smlnj.org/sml97.html
    Standard ML '97
    Standard ML was proposed in 1983, designed from '84-'88, and defined in Definition of Standard ML (Milner, Tofte, Harper, MIT Press, 1990) Standard ML '97 is a modest revision (and simplification) of the language, defined in The Definition of Standard ML (Revised) (Milner, Tofte, Harper, MacQueen, MIT Press, 1997) The name of the revised language remains "Standard ML", but we also refer to it as "Standard ML '97" or "SML '97" to distinguish it from the 1990 version, which can be referred to as "SML '90". At the same time, the new SML Basis Library is added to the specification of the language. The new basis library is intended to support a wide range of systems and applications programming: it specifies a broad collection of predefined modules that provide basic types, input/output facilities, and interfaces for interacting with the host operating system in a portable way. The highlights of the language changes in SML '97 are given below. For much more detail on the changes, and suggestions on how to convert SML '90 code to run under SML '97, see the SML '97 Conversion Guide The principal language changes in SML '97 are:
    • The elimination of imperative type variables . The role of imperative type variables in constraining polymorphism in the presence of effects is now played by the value restriction , which allows the type of a val binding to be generalized only when the right hand side is an expression in a restricted form called a value expression . A value expression is either a constant, a variable, a function expression (i.e. a lambda expression) or is built from these elements using products and constructions.

    55. BookFinder.com: Elements Of Ml Programming 97
    Elements of ml programming 97. by Jeffrey D. Ullman. ISBN 013-790387-1 / 0137903871. Title Elements of ml programming 97. Author Jeffrey D. Ullman.
    http://www.bookfinder.com/dir/i/Elements_of_Ml_Programming_97/0137903871/
    Search About Interact Help
    Elements of Ml Programming 97
    by Jeffrey D. Ullman
    ISBN: Title: Elements of Ml Programming 97 Author: Jeffrey D. Ullman Publisher: Prentice Hall PTR Edition: Softcover Found a mistake in this data?
    Conditions of use

    Search
    About ...
    Contact us...

    56. ML Programming Language - Wikipedia
    ml programming language. ML (standing for MetaLanguage ) is a functional programming language developed in the early 1980s at Edinburgh University.
    http://www.web-dictionary.org/encyclopedia/ml/ML_programming_language.html
    Web-Dictionary.org
    An Online Dictionary For Everyone
    Contents
    ML programming language
    From Wikipedia, the free encyclopedia.
    ML (standing for " Meta-Language ") is a functional programming language developed in the early 1980s at Edinburgh University. Today there are several languages in the ML family; the most popular are SML (Standard ML) and Ocaml This article is a stub . You can help Wikipedia by fixing it wikipedia.org All text is available is licensed under the terms of the GNU Free Documentation License
    Help build the worlds largest free encyclopedia

    The content of the web encylcopedia is based on the Wikipedia Project and may have been modified by Web-Dictionary.org
    Home

    Research Resources in Social Science

    Diet-Books-Online.com

    Business-Books-Online
    ... Data Warehousing Portal

    57. Elements Of ML Programming, ML97 Edition (2nd Edition)
    Elements of ml programming, ML97 Edition (2nd Edition), Elements of ml programming, ML97 Edition (2nd Edition) by Authors Jeffrey D. Ullman Released 22
    http://www.wkonline.com/a/Elements_of_ML_Programming_ML97_Edition_2nd_Edition_01
    Book > Elements of ML Programming, ML97 Edition (2nd Edition) Elements of ML Programming, ML97 Edition (2nd Edition)
    by Authors: Jeffrey D. Ullman
    Released: 22 December, 1997
    ISBN: 0137903871
    Textbook Binding
    Sales Rank:
    List price:
    Our price:
    Elements of ML Programming, ML97 Edition (2nd Edition) > Customer Reviews: Average Customer Rating:
    Elements of ML Programming, ML97 Edition (2nd Edition) > Customer Review #1: A decent overview of ML
    While I find functional programming, and ML/SML in particular to be most annoying, this particular book is helpful in illuminating some key concepts of the paradigm. However, there are certainly sections where complex concepts are either glossed over, or explained in a very confusing manner (take Section 5.3.1, for example, which attempts, in a somewhat confusing manner, the limitations of polymorphic functionality in ML and its relationship to types. A dense topic to be sure, but also poorly explained.) Additionally, there are some technical errors to be found in the book (eg: things that dont work which really do, incorrect error messages, etc), which I mostly attribute to SML having been updated since the author published the book (not really his fault). Certain things, ARE however, the authors fault. In particular, he addresses the audience with needlessly confusing Basis/Induction definitions for many many things. For example, a binary tree is defined in such a way. This can be incredibly confusing, espcially if one does not already understand the concept of a BT or a BST. While ML/SML is a mathematical language, the author assumes too much formalism in his definitions, enough that the reading feels like reading a thick algorithms book at times (not a pleasant experience). Suggestion to author: Explain things simply instead of trying to coerce definitions into formalisms in which they do not belong (in particular the induction formalism which is very often confusing, use induction only when TRULY needed).

    58. Elements Of ML Programming, ML97 Edition
    Elements of ml programming, ML97 Edition Search for books at facultyofcomputers.com. Elements of ml programming, ML97 Edition Jeffrey D. Ullman.
    http://facultyofcomputers.com/0137903871.html
    STUDENT BOOKS ONLINE
    Faculty Of Computer Science
    Student Books Online Back To Computer Science Search Featured Universities ... Programming
    Looking for more books? Richard C. Beese FireWire: IEEE 1394A Suzanne Van Cleve The Engineering Handbook ... K.S. Singh
    Links For Students Lesson Tutor
    Shopping Links Shopping Directory
    Digital Cameras

    Big Shoes

    Consumer Electronics
    ...
    Canadian Pharmacy

    Elements of ML Programming, ML97 Edition
    Jeffrey D. Ullman

    Published by Prentice Hall (December 1997) ISBN 0137903871 Price $48.00 Buy from amazon.co.uk Customer Reviews Although this is an introductory book, I also recommend it to advanced programmers. Concise and well written, it is a joy to read. Programmers who have little knowledge of modern functional languages will benefit immensely from this book. It is a great recreational read. People who were interested in this book were also interested in the following books: And in the following Categories: Interested in further search?

    59. Tutorial Papers In Functional Programming
    This is a course given for postgrads at the University of Edinburgh, and covers an introduction to ml programming, some underlying theory, and formal program
    http://www.md.chalmers.se/~rjmh/tutorials.html
    Tutorial Papers in Functional Programming
    Feel free to email me additional suggestions! (Preferably as HTML source for the link).
    Programming

    60. Elements Of Ml Programming Ml97 Edition:(United States Edition) Jeffrey D Ullman
    Elements of ml programming Ml97 Edition(United States Edition) Jeffrey D Ullman. Elements of ml programming Ml97 Edition(United
    http://www.wmgpromotionalgifts.co.uk/Jeffrey-D-Ullman-Elements-of-Ml-Programmin-
    Elements of Ml Programming Ml97 Edition:(United States Edition) Jeffrey D Ullman
    Author or Artist : Jeffrey D Ullman
    Title: Elements of Ml Programming Ml97 Edition:(United States Edition)
    Ullman Jeffrey D
    Jeffrey D. Ullman
    Subject: Computer Books: General
    Format: Paperback
    Madan Mehta James Johnson Jorge Rocafort-Architectural Acoustics:Principles and Design: Principles and Design...

    Kevin T. Owens-Building Intelligent Databases with Oracle PL/SQL, Triggers, and Stored Procedures (Oracle)...

    Farzad Nekoogar-Timing Verification of Applications Specific Circuits...

    Lisa A Seidman Cynthia J Moore-Basic Laboratory Methods for Biotechnology: Textbook and Laboratory Reference...
    ...
    Tony Buzan-How to Mind-map: The Ultimate Thinking Tool That Will Change Your Life...

    A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  

    Page 3     41-60 of 113    Back | 1  | 2  | 3  | 4  | 5  | 6  | Next 20

    free hit counter