Geometry.Net - the online learning center
Home  - Basic_L - Lisp Programming
e99.com Bookstore
  
Images 
Newsgroups
Page 2     21-40 of 131    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | 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  

         Lisp Programming:     more books (100)
  1. LISP Lore: A Guide to Programming the LISP Machine by H. Bromley, Richard Lamson, 1987-06-30
  2. Object-Oriented Common LISP by Stephen Slade, 1997-08-09
  3. Symbolic Computing With Lisp and Prolog by Robert A. Mueller, Rex L. Page, 1988-11
  4. Common Lisp: A Gentle Introduction to Symbolic Computation by David S. Touretzky, 1989-09
  5. Lisp in Small Pieces by Christian Queinnec, 1996-06-28
  6. Introduction to Common Lisp by Taichi Yuasa et, 1987-09-28
  7. Common Lisp: The Reference by Franz Inc., Staff Franz Inc, 1988-12
  8. Visual LISP Programming: Principles and Techniques by Rod Rawls, Mark Hagen, et all 2007-10
  9. Programming Paradigms in Lisp (McGraw-Hill series in artificial intelligence) by Rajeev Sangal, 1991-02
  10. Parallel Lisp: Languages and Systems (Lecture Notes in Computer Science) by Japan Workshop on Parallel Lisp, et all 1990-10
  11. Proceedings of the 1986 Acm Conference on Lisp and Functional Programming
  12. LISP for Micros (Newnes programming books) by S. Oakey, 1984-09
  13. An Introduction to Programming in Lisp by H. Wertz, 1988-09
  14. Lisp Programming (Computer Science Texts) by I. Danicic, 1983-12

21. ANSI Common Lisp
by Paul Graham (1996) combines an introduction to lisp programming, and a convenient, upto-date reference manual for ANSI Common Lisp.
http://tmsyn.wc.ask.com/r?t=an&s=hb&uid=24312681243126812&sid=343126

22. Learning Lisp For CMPT 310
You will be coding in the Common lisp programming language for your assignments. All the Lisp that you need for completing the programming assignments
http://www.cs.sfu.ca/CC/310/pwfong/Lisp/
Learning Lisp for CMPT 310
You will be coding in the Common LISP programming language for your assignments. Since you are already a third-year student, you will be learning the language on your own, with the following assistance:
  • a set of tutorial notes to guide you through Common LISP in 4 weeks
  • a LISP development environment to let you experiment with the language and work on the exercises from the tutorial notes
  • recommended references on Common LISP
  • some web resources for learning LISP
    Tutorial Notes
    All the Lisp that you need for completing the programming assignments will be presented in the following tutorial notes. You are expected to master the materials of one tutorial in a week. Work through the exercises. They are good for your soul.
    • Tutorial 1 Basic LISP Programming
      Basic Lisp data types, some built-in functions, defining functions, loading and compiling programs, recursions (linear, multiple, structural).
      source code
      solution to selected exercises
    • Tutorial 2 Advanced Functional Programming in LISP
      Tail recursions, higher-order functions, multiple values.
  • 23. John McCarthy
    Inventor of the lisp programming language, arguably the oldest language in active use today (and a likely candidate for oldest highlevel language overall, in competition with Fortran)
    http://www-formal.stanford.edu/jmc/
    John McCarthy's Home Page
    I'm Professor Emeritus (as of 2001 Jan 1) of Computer Science at Stanford University and here's more about me including addresses. If you like frames try this [courtesy of Tim McCarthy].
    What's new?
    It occurs to me that those who have already looked at this web page might not want to slog through all of it on the chance that something newly installed might interest them. If you've looked at the page before, then look at this dated list. Dates start in 1995 July. I sometimes miss one or two. THE ROBOT AND THE BABY is a science fiction story. Maybe I'll try to publish it conventionally. Do you think I should? I have decided to make some comment from time to time on world, national and scientific affairs. I don't have time to make this into a proper blog. INTRODUCTORY My goal is get all my papers and many of my notes into a form reachable from this page. If any of the papers here are listed as references, I would be grateful if the URLs were given along with the printed references. Some are available only as Web documents and will remain that way. Please include them as references if you would reference a printed document with the same content. The Sustainability of Human Progress
    Many people, including many scientists, mistakenly believe that human progress, in the form it has taken in the last few hundred years, is unsustainable. The sustainabililty page and its subsidiaries attempt to summarize the scientific basis for technological optimism. There is also a section discussing related ideological phenomena and the advocacy politics to which ideologies have given rise.

    24. ALU: Lisp Programming Style
    Here are some general suggestions/notes about improving lisp programming style, This style is considered ugly by experienced Lisp programmers.
    http://www.lisp.org/table/style.htm
    Lisp Programming Style
    search
    site map

    navigate

    about
    ... style Here are some general suggestions/notes about improving Lisp programming style, readability, correctness and efficiency. These are written by Mark Kantrowitz and Barry Margolin and come from the Lisp FAQ In addition, Hallvard Tretteberg's Lisp Style Guide covers some of the same material. There are also several books that cover Lisp programming style
    General Programming Style Rules
    Often Misused Operators
    Readability ...
    Correctness and Efficiency Issues
    General Programming Style Rules
    • Write short functions, where each function provides a single, well-defined operation. Small functions are easier to read, write, test, debug, and understand.
    • Use descriptive variable and function names. If it isn't clear from the name of a function or variable what its purpose is, document it with a documentation string and a comment. In fact, even if the purpose is evident from the name, it is still worth documenting your code.
    • Don't write Pascal (or C) code in Lisp. Use the appropriate predefined functions look in the index to CLtL2, or use the APROPOS and DESCRIBE functions. Don't put a close parenthesis on a line by itself this can really irritate programmers who grew up on Lisp. Lisp-oriented text editors include tools for ensuring balanced parentheses and for moving across pairs of balanced parentheses. You don't need to stick comments on close parentheses to mark which expression they close.

    25. ALU: Lisp Books
    LISP Lore A Guide to Programming the LISP Machine, 2nd edition. Kluwer Academic, Boston, 1987. Common lisp programming for Artificial Intelligence.
    http://www.lisp.org/table/bibliography.htm
    Books on Lisp
    search
    site map

    navigate

    about
    ... glossary This only lists books, listed by author. See also books by subject references material periodicals and electronic resources See also recent MIT Press books Quantum Books , and Powell's Books , which has a usefull search form. Note: When this icon appears in listings below, click on it to retreive the source code printed in the book.
    Abelson , Harold, Gerald Jay Sussman and Julie Sussman
    Structure and Interpretation of Computer Programs MIT Press , 1985. 542 pages. ISBN 0-262-01077-1 Second Edition, 1996. [comments]
    Allen, James
    Natural language understanding 2nd Ed. 1994 Addison-Wesley, ISBN 0-8053-0334-0 [comments]
    Allen, John
    Anatomy of Lisp . McGraw-Hill, 1978. 446 pages. ISBN 0-07-001115-X [comments]
    Anderson, John R., Albert T. Corbett, and Brian J. Reiser
    Essential LISP . Addison-Wesley (Reading, MA), 1987. 352 pages. ISBN 0-20-11114-8-9, $23.95 [comments]
    Berk, A. A.
    LISP, The Language of Artificial Intelligence . Van Nostrand Reinhold, 1985. 160 pages. ISBN 0-44-22097-4-6 [comments]
    Biewer, B.

    26. CLiki : Gentoo
    Provides information about supported implementations of the lisp programming language.
    http://www.cliki.net/gentoo
    CL iki the common lisp wiki
    Home
    Recent Changes About CLiki Text Formatting ... Create New Page
    Gentoo
    Similar to Debian , the Gentoo Linux distribution also offers a lot of Common Lisp software ports ready to use . The ports are based on Debian's Common-Lisp-Controller
    Common Lisp Implementations
    * support for Common Lisp Controller ** support for compiling site-wide Common Lisp source from /usr/share/common-lisp/source/ (clc-lite.lisp see README.Gentoo) + live CVS port
    Helping out with Common Lisp in Gentoo
    If you are a Gentoo user with a reasonable knowledge of both Common Lisp and the Gentoo ebuild system (especially the dev-lisp/ category), please consider becoming a Gentoo developer to assist in its maintenance. Contact Matthew Kennedy if interested.
    Reporting Bugs and Feature Requests
    The best way to make suggestions, feature requests or requests for new ports is to file a bug with the Gentoo Bugzilla system.
    Platform Availability of Common Lisp Ports
    Almost all of the Common Lisp implementations and Common Lisp libraries in Portage are available for the following architecture keywords as of 24 May 2005: ~ppc, ~amd64, ~sparc and x86. This means if you're using the STABLE x86 keyword or the UNSTABLE amd64, ppc or sparc keywords, then you do not need to do anything special to have the latest ports available. If you're using STABLE keywords with amd64, ppc or sparc, then most of the Common Lisp implementations and libraries will not be available to you by default. Luckily there is a mechanism in Portage where you can use specific UNSTABLE keyworded ports while you continue to use STABLE keywords in general. The following section describes how to do this.

    27. Good Lisp Programming Is Hard
    Many Lisp enthusiasts believe that lisp programming is easy. The following examples of badly performing Lisp programs were all written by competent Lisp
    http://www.ai.mit.edu/docs/articles/good-news/subsection3.2.2.html
    Previous: The Rise of ``Worse is Better'' Up: Lisp's Apparent Failures Next: Integration is God
    Good Lisp Programming is Hard
    Many Lisp enthusiasts believe that Lisp programming is easy. This is true up to a point. When real applications need to be delivered, the code needs to perform well. With C, programming is always difficult because the compiler requires so much description and there are so few data types. In Lisp it is very easy to write programs that perform very poorly; in C it is almost impossible to do that. The following examples of badly performing Lisp programs were all written by competent Lisp programmers while writing real applications that were intended for deployment. I find these quite sad. rpg@lucid.com

    28. An Introduction And Tutorial For Common Lisp
    Basic Common lisp programming. No AI Slant Moderately FastPaced ANSI The best introduction to Common Lisp as a general-purpose programming language.
    http://www.apl.jhu.edu/~hall/lisp.html
    An Introduction and Tutorial for Common Lisp
    This document provides a small set of resources and references on Common Lisp. It was originally prepared for students in the Part-Time MS Program in Computer Science at the Johns Hopkins University. This document is not evolving as fast as it once was since much of my time is now spent doing Java work. Nevertheless, please send corrections/suggestions to Marty Hall (hall@apl.jhu.edu). The original of this document is at http://www.apl.jhu.edu/~hall/lisp.html. Note that some of the documents are in PostScript. If your WWW browser cannot display PostScript, they can still be saved and printed.
    Table of Contents
    Lisp-Related Books
    Here are some of my personal favorite Lisp, AI Programming, and general AI texts. I can recommend all of them from personal experience. Click on the titles to see more information or to order them on-line. Find More Books
    • Basic Common Lisp Programming
      • No AI Slant: Moderately Fast-Paced: ANSI Common Lisp by Paul Graham . The best introduction to Common Lisp as a general-purpose programming language. A bit hard going for inexperienced programmers, however.

    29. Lisp References
    Hasemer Domingue, Common lisp programming for Artificial Intelligence. One of the most commonly used references by Lisp programmers, but corresponds
    http://www.apl.jhu.edu/~hall/Lisp-Notes/Lisp-References.html
    Lisp References
    • Introductory Touretzky, Common Lisp: A Gentle Introduction to Symbolic Computation . Good intro that assumes little programming background. Wilensky, Common LispCraft . Similar to the above. Kessler, Lisp, Objects, and Symbolic Computation . Illustrates some of the power of Lisp, but uses pre-CLOS object system. Tatar, A Programmer's Guide to Common Lisp . Designed for the C/Pascal/FORTRAN programmer. Milner, Common Lisp: A Tutorial . Straightforward but doesn't illustrate all the power of Lisp. The Little Lisper . A whimsical introduction to the ideas of Lisp suitable for the completely non-computer literate. From MIT.
    • Advanced/AI Applications Lisp (3rd Ed). The best single introduction to Lisp for the person with AI and programming background. Structure and Interpretation of Computer Programs . A general introduction to Computer Science (not AI) using Scheme (a Lisp dialect). This is the text used for Computer Science undergrads at MIT, and is widely considered one of the all-time best introductions to Computer Science. Referred to in the trade as "SICP". Norvig

    30. CLiki : Index
    The Common Lisp wiki, containing links to and resources for the Common lisp programming language, and written in Lisp itself.
    http://www.cliki.net/
    CL iki the common lisp wiki
    Home
    Recent Changes About CLiki Text Formatting ... Create New Page
    index
    Links to and resources for free software implemented in Common Lisp and available on Unix -like systems. Listed software should satisfy the Debian Free Software Guidelines ( DFSG Non-Free, non-Unix and non-Common Lisp resources can be found at the tech.coop hyper-cliki

    31. M.Hiroi's Home Page / Xyzzy Lisp Programming
    Translate this page The summary for this Japanese page contains characters that cannot be correctly displayed in this language/character set.
    http://www.geocities.jp/m_hiroi/xyzzy_lisp.html
    M.Hiroi's Home Page
    http://www.geocities.jp/m_hiroi/
    xyzzy Lisp Programming
    Home Tcl/Tk Puzzle Prolog ... Function
    WHAT'S NEW
    CONTENTS
    xyzzy ‚Í ‹Tˆä“N–펁 ‚ªì¬‚³‚ꂽ Emacs Œn‚̃GƒfƒBƒ^‚Å‚·B xyzzy ‚É“‹Ú‚³‚ê‚Ä‚¢‚é Lisp (ˆÈŒã xyzzy Lisp ‚Æ‹Lq) ‚́ALisp ‚Ì•W€‚Å‚ ‚é Common Lisp ‚ɏ€‹’ ‚µ‚Ä‚¢‚é—D‚ꂽˆ—Œn‚Å‚·B ‚±‚Ì xyzzy Lisp ‚ðŽg‚Á‚āA Lisp ‚ŃvƒƒOƒ‰ƒ~ƒ“ƒO‚ðŠy‚µ‚à‚¤ Lisp ‚͏‰‚ß‚Ä‚Æ‚¢‚¤•û‚Í Common Lisp “ü–å u‚¨‹CŠy‚²‚­‚ç‚­ƒvƒƒOƒ‰ƒ~ƒ“ƒO“ü–å Lisper ‚Ö‚Ì“¹ v ‰½‚©‚²—v–]‚ª‚ ‚è‚Ü‚µ‚½‚çAƒQƒXƒgƒuƒbƒN‚⃁[ƒ‹‚Å‚¨‹CŒy‚É‚¨’m‚点‚­‚¾‚³‚¢‚Ü‚¹B
    œŒ —˜E–Ɛӎ–€‚È‚Ç
    wxyzzy Lisp Programming (Common Lisp “ü–å, “Ç‚Ý•¨) x ‚Ì’˜ìŒ ‚Í•MŽÒuLˆä½ (Makoto Hiroi) v‚ª•ÛŽ‚µ‚Ü‚·B –³’fŽg—p‚â–³’f“]Ú‚Í‹ÖŽ~‚¢‚½‚µ‚Ü‚·B note
    ‹TˆäŽ‚É‚æ‚é‚ƁA€‹’“x‚Í‚¹‚¢‚º‚¢ 6 Š„’ö“x‚¾‚»‚¤‚Å‚·B Common Lisp ‚ÌŽd—l‚Í‹‘å‚Ȃ̂ŁA‚½‚Æ‚¦‚UŠ„‚¾‚Æ‚µ‚Ä‚à¦‚¢‚±‚Æ‚Å‚·B
    Common Lisp “ü–å
    ŽQl•¶Œ£
    [3] Guy L. Steele Jr., wCOMMON LISP ‘æ 2 ”Łx, ‹¤—§o”Å, 1991

    32. Oreilly.com -- Online Catalog: Learning GNU Emacs, Second Edition
    Covers basic editing, several important editing modes (special Emacs features for editing specific types of documents, including email, Usenet News, and the Web), and customization and Emacs lisp programming.
    http://www.oreilly.com/catalog/gnu2/
    Sign In/My Account View Cart Book List Learning Lab ... Jobs
    Search Resource Centers Bioinformatics C/C++ Databases Digital Media ... XML Book Series Annoyances CD Bookshelves Cookbooks Developer's Notebooks ... Personal Trainer Publishing Partners Mandriva No Starch Press Paraglyph Press PC Publishing ... Syngress Publishing Online Publications LinuxDevCenter.com MacDevCenter.com ONDotnet.com ONJava.com ... XML.com Sponsored Zones Novell Learning Channel Special Interest Beta Chapters Events From the Editors List Letters ... tim.oreilly.com Special Sales Academic Corporate Services Government Inside O'Reilly About O'Reilly Bookstores Catalog Request Contact Us ...
    Register your book
    to get email notification of new editions, special offers, and more. Search on Safari Search contents of Learning GNU Emacs Code Fragments only Also see:
    Table of Contents

    Index
    Learning GNU Emacs, Second Edition
    By  Debra Cameron Bill Rosenblatt Eric S. Raymond
    Second Edition September 1996
    ISBN: 1-56592-152-6
    This book has been updatedthe edition you're requesting is out of print. Please visit the catalog page of the latest edition
    The latest edition is also available on Safari Bookshelf
    This comprehensive guide to the GNU Emacs editor, one of the most widely used and powerful editors available under UNIX, covers basic editing, several important "editing modes" (special Emacs features for editing specific types of documents, including email, Usenet News, and the Web), and customization and Emacs LISP programming. It is aimed at new Emacs users, whether or not they are programmers, and includes a quick-reference card. Covers Version 19.30. [

    33. Programming Bottom-Up
    Experienced Lisp programmers divide up their programs differently. The experience of lisp programming suggests a more cheerful way to phrase this law
    http://www.paulgraham.com/progbot.html
    (This essay is from the introduction to On Lisp The red text explains the origins of Arc 's name.)
    It's a long-standing principle of programming style that the functional elements of a program should not be too large. If some component of a program grows beyond the stage where it's readily comprehensible, it becomes a mass of complexity which conceals errors as easily as a big city conceals fugitives. Such software will be hard to read, hard to test, and hard to debug.
    In accordance with this principle, a large program must be divided into pieces, and the larger the program, the more it must be divided. How do you divide a program? The traditional approach is called top-down design: you say "the purpose of the program is to do these seven things, so I divide it into seven major subroutines. The first subroutine has to do these four things, so it in turn will have four of its own subroutines," and so on. This process continues until the whole program has the right level of granularity each part large enough to do something substantial, but small enough to be understood as a single unit.
    Experienced Lisp programmers divide up their programs differently. As well as top-down design, they follow a principle which could be called

    34. AutoCAD Lisp/ADS Tools
    lisp programming tools (editors, checkers, corman lisp, ) Lisp/Ads programs (not Cadalog/Cadsyst, just some goodies for europeans)
    http://xarch.tu-graz.ac.at/autocad/lsp_tools/

    35. Lisp Programming Language - Wikiquote
    SQL, Lisp, and Haskell are the only programming languages that I ve seen where More than anything else, I think it is the ability of Lisp programs to
    http://en.wikiquote.org/wiki/Lisp_programming_language
    Lisp programming language
    From Wikiquote
    Contents
    edit
    About Lisp
    Emacs is written in Lisp, which is the only computer language that is beautiful. — Neal Stephenson , In the Beginning was the Command Line The greatest single programming language ever designed. — Alan Kay , on Lisp One of the most important and fascinating of all computer languages is Lisp (standing for "List Processing"), which was invented by John McCarthy around the time Algol was invented. — Douglas Hofstadter Godel, Escher, Bach Lisp is a programmable programming language. — John Foderaro, CACM, September 1991 Lisp isn't a language, it's a building material. — Alan Kay Lisp is the red pill. — John Fraser, comp.lang.lisp Lisp is like a ball of mud - you can throw anything you want into it, and it's still Lisp. — Anonymous Lisp has jokingly been called "the most intelligent way to misuse a computer". I think that description is a great compliment because it transmits the full flavor of liberation: it has assisted a number of our most gifted fellow humans in thinking previously impossible thoughts. — "The Humble Programmer", E. Dijkstra

    36. Lisp Programming Language: Information From Answers.com
    lisp programming language Lisp is a functional programming language family with a long history. Originally developed as a practical computation model.
    http://www.answers.com/topic/lisp-programming-language-1
    showHide_TellMeAbout2('false'); Business Entertainment Games Health ... More... On this page: Wikipedia Mentioned In Or search: - The Web - Images - News - Blogs - Shopping Lisp programming language Wikipedia Lisp programming language Lisp is a functional programming language family with a long history. Originally developed as a practical computation model (in comparison to Alan Turing 's), it later became the favored artificial intelligence research language during the field's heyday in the and . Today, Lisp languages are used in many fields, from web development to finance http://alu.cliki.net/Industry%20Application , and are also common in computer science education The name Lisp derives from "List Processing". Linked lists are one of Lisp languages' major data structures , and identical basic list operations work in all Lisp dialects. Other common features in Lisp dialects include dynamic typing functional programming support, and the ability to manipulate source code as data. S-expression syntax. Every sub-expression in a program (or data structure) is set off with parentheses. This makes Lisp languages easy to parse , and also makes it simple to do metaprogramming Originally specified in 1958, Lisp is the second-oldest

    37. ANSI Common Lisp
    by Paul Graham (1996) combines an introduction to lisp programming, and a convenient, upto-date reference manual for ANSI Common Lisp.
    http://www.paulgraham.com/acl.html
    ANSI Common Lisp combines an introduction to Lisp programming, and a convenient, up-to-date reference manual for ANSI Common Lisp. Beginners will find that its careful explanations and interesting examples make Lisp programming easy to learn. Professional programmers will appreciate its thorough, practical approach.
    Prentice Hall, 1995, 432 pages, paperback. ISBN 0133708756.
    $55.80 at SoftPro , $62.00 at Amazon
    • An up-to-date reference manual for ANSI Common Lisp.
    • An in-depth look at object-oriented programming. Explains the Common Lisp Object System (CLOS), and also shows how to write your own object-oriented language.
    • Over 20 substantial examples, including programs for ray-tracing, text generation, pattern-matching, logical inference, generating HTML, sorting and searching, file I/O, compression, and date arithmetic.
    • Special attention to critical concepts, including prefix syntax, code vs. data, recursion, functional programming, types, implicit pointers, dynamic allocation, closures, macros, class precedence, and generic functions vs. message-passing.
    • A complete guide to optimization.

    38. Programming In Emacs Lisp: Programming In Emacs Lisp
    Translate this page Programming in Emacs lisp programming in Emacs Lisp.
    http://www.math.s.chiba-u.ac.jp/~matsu/lisp/emacs-lisp-intro-jp.html
    Top Contents Index
    Programming in Emacs Lisp
    `emacs-lisp-intro-1.05.tar.gz' $B$G$9!#(B $B=xJ8(B Lisp $B$C$F2?!)(B 2. $B 4. $B%P%C%U%!$K4X$9$k4v$D$+$N4X?t(B 6. $B%J%m! <%$%s%0$H%o%$%I%K%s%0(B Emacs $B$NCm0U$rFCDj$N%j! <%8%g%s$K$;$P$a$k(B car cdr cons 8. $B%F%-%9%H$N@Z$j ... the-the Appendix: $B$@$V$C$?C18l$r8+$D$1$k$K$O(B B. Kill $B%j%s%0$N07$$(B C. $B%i%Y%k$H <4$,IU$$$?%0%i%U(B Index ... About the Author
    The Detailed Node Listing -
    Preface
    $B$3$N%F%-%9%H$rFI$`$K$"$?$C$F(B
    $B$3$l$OC/$N$?$a$K=q$+$l$?$b$N$+(B Lisp $B$NNr;K(B $B=i?4 ...
    1.1 Lisp $B$N%j%9%H(B
    $B%j%9%H$C$F$J$"$K!)(B 1.2 $B%W%m%0%i%`$N Lisp $B$N%j%9%H$O$9$0$K 1.3 $B%(%i! <%a%C%;! ... 1.10 $B$^$H$a(B
    Lisp Lists
    1.1.1 Lisp $B$N%"%H%`(B
    $BJ,2rIT2DG=$JB8:_(B 1.1.2 $B%j%9%H$NCf$N6uGr(B 1.1.3 GNU Emacs $B$K$h$k%j%9%H$N%?%$%W$N;Y1g(B
    The Lisp Interpreter
    1.5.1 $B%P%$%H%3%s%Q%$%k(B

    Evaluation
    1.6.1 $BFbIt$N%j%9%H$NI>2A(B
    Variables <%a%C%;! <%8(B Arguments 1.8.1 $B0z?t$N%G! <%?7?(B 1.8.2 $B0z?t$K$OJQ?t$NCM$d%j%9%H$b;H$($k(B 1.8.3 $B2DJQ$J?t$N0z?t(B $B$b$N$b$"$k(B 1.8.4 $B4X?t$K4V0c$C$?7?$N0z?t$rM?$($k$H(B

    39. The LISP Programming System
    The lisp programming system is a system for using the IBM 704 computer to In the lisp programming system we put more in the association list of a symbol
    http://www-formal.stanford.edu/jmc/recursive/node4.html
    Next: Another Formalism for Functions Up: Recursive Functions of Symbolic Previous: Recursive Functions of Symbolic
    The LISP Programming System
    The LISP programming system is a system for using the IBM 704 computer to compute with symbolic information in the form of S-expressions. It has been or will be used for the following purposes: l. Writing a compiler to compile LISP programs into machine language. 2. Writing a program to check proofs in a class of formal logical systems. 3. Writing programs for formal differentiation and integration. 4. Writing programs to realize various algorithms for generating proofs in predicate calculus. 5. Making certain engineering calculations whose results are formulas rather than numbers. 6. Programming the Advice Taker system. The basis of the system is a way of writing computer programs to evaluate S-functions. This will be described in the following sections. In addition to the facilities for describing S-functions, there are facilities for using S-functions in programs written as sequences of statements along the lines of FORTRAN (4) or ALGOL (5). These features will not be described in this article. a.

    40. Lisp Books: Best Lisp And Artificial Intelligence Books
    A variety of books on Common lisp programming and AI, personally chosen by an experienced developer.
    http://www.apl.jhu.edu/~hall/lisp-books.html
    Lisp and AI Books Here are some of my personal favorite AI and Lisp books. I can recommend all of these books from personal experience. Click on the book titles to see more information or to order them on-line. For more information on Common Lisp, see my Lisp resources page Find More Lisp Books

    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 2     21-40 of 131    Back | 1  | 2  | 3  | 4  | 5  | 6  | 7  | Next 20

    free hit counter