Browse Results

Showing 53,776 through 53,800 of 54,505 results

The Invisible Computer: Why Good Products Can Fail, the Personal Computer Is So Complex, and Information Appliances Are the Solution

by Donald A. Norman

Technologies have a life cycle, says Donald A. Norman, and they must change as they pass from youth to maturity. Alas, the computer industry thinks it is still in its rebellious teenage years, exalting in technical complexity.

IT in Business: A Manager's Casebook

by D. Targett David Grimshaw Philip Powell

'IT in Business: A Manager's Casebook' examines the impact of new IT initiatives from the business angle. The case material is derived from the year's best research projects from three leading UK Business Schools - Bath, Cranfield and Warwick. This incisive exploration of managing processes in IT companies is essential reading for IT managers in 'end-user' businesses who have to deliver strong business benefits from IT. In a climate of rapid and continual change, such contemporary information is invaluable.'IT in Business: A Manager's Casebook' tackles managerial issues using specific case studies such as Tesco, Johnsons News Limited and the Department of Health to illustrate these points.David Targett is the Professor of Information Management at Imperial College Management School, University of London. For eight years, 1990-98, he was the Professor of Information Systems and Director of the Centre for Research into Strategic Information Systems (CRSIS) at the University of Bath. Previously, he was at the London Business School and before becoming an academic he was an industrial engineer in the motor industry.David Grimshaw is Senior Lecturer in Information Systems at Cranfield School of Management and was previously at the University of Leeds and Warwick Business School, University of Warwick. He has wide teaching experience and has taught in Australia, Hong Kong, Malaysia, Portugal, Russia and Singapore. He has ten years' practical experience in information systems and as an independent consultant has advised many companies on strategic information systems planning and on geographical information systems.Philip Powell is Professor of Information Systems at Goldsmiths College, University of London. Prior to this he was Reader in Information Systems and ICAEW Academic Fellow in the Operational Research and Systems Group, and Director of the Information Systems Research Unit at Warwick Business School. Before becoming an academic he worked in insurance, accounting and computing. He has taught in Southampton, Australia and Portugal and held a number of other posts overseas.

Java 2D Graphics

by Jonathan Knudsen

Java 2D Graphics describes the 2D API from top to bottom, demonstrating how to set line styles and pattern fills as well as more advanced techniques of image processing and font handling. You'll see how to create and manipulate the three types of graphics objects: shapes, text, and images. Other topics include image data storage, color management, font glyphs, and printing.

Java Enterprise in a Nutshell

by David Flanagan William Crawford Jim Farley Kris Magnusson

Java Enterprise in a Nutshell is an indispensable quick reference for Java programmers who are writing distributed enterprise applications. The book provides fast-paced tutorials on the following Java Enterprise APIs: JDBC, a vendor-independent API for accessing relational database systems RMI, a Java-only approach to distributed computing that relies on remote method invocation Java IDL, a CORBA-based, language-independent approach to distributed computing Java servlets, a mechanism for extending a web server that allows Java code to perform tasks traditionally handled by CGI scripts JNDI, a generic Java API for working with networked naming and directory services Enterprise JavaBeans, a component model that separates high-level business logic from low-level housekeeping chores like security and transaction management These APIs are the building blocks of the Java 2 Platform, Enterprise Edition (J2EE), Sun's recently announced new platform for enterprise computing. J2EE is the standard Java 2 platform with a number of extensions for enterprise development. Java Enterprise in a Nutshell also contains O'Reilly's classic-style, quick-reference material for all of the classes in the various packages that comprise the Enterprise APIs. This material includes the core Enterprise APIs that are part of Java 1.2, as well as numerous standard extensions. This book is a companion to both Java in a Nutshell, 3rd Edition, which covers the key non-graphical, non-enterprise APIs in Java 1.2, and Java Foundation Classes in a Nutshell, which describes the graphics- and GUI-related classes of Java 1.2.

Java Enterprise in a Nutshell, 2nd Edition

by William Crawford Jim Farley David Flanagan

Nothing is as constant as change, and this is as true in enterprise computing as anywhere else. Since Java Enterprise in a Nutshell was first published in September of 1999, a dozen or more new APIs have been added to the platform, reflecting the new and different ways developers implement their enterprise objectives. And now developers are being called on to add even greater, more complex levels of interconnectivity to their applications, as the concepts behind Web Services solidify and implementation decisions need coding. Java developers today need a clear understanding of the new APIs, tools, capabilities and pitfalls in J2EE 2.0 so they can plan a technology and implementation strategy for new enterprise projects. Fortunately, this is exactly what they get with the new Java Enterprise in a Nutshell, 2nd edition ! Completely revised and updated for the new 2.0 version of Sun Microsystems Java Enterprise Edition software, Java Enterprise in a Nutshell 2nd edition covers all of the J2EE APIs, including RMI, Java IDL, JDBC, JNDI, Java Servlet, and Enterprise JavaBeans, with a fast-paced tutorial and compact reference on each technology. Then Java Enterprise in a Nutshell goes even further, providing a classic O'Reilly-style quick reference for all of the classes in the various packages that comprise the Enterprise APIs - covering the core enterprise APIs as well as numerous standard extensions.

Java I/O

by Elliotte Rusty Harold

All of Java's Input/Output (I/O) facilities are based on streams, which provide simple ways to read and write data of different types. Java I/O tells you all you need to know about the four main categories of streams and uncovers less-known features to help make your I/O operations more efficient. You'll also learn how to control number formatting, use characters aside from the standard ASCII character set, and get a head start on writing truly multilingual software.

Java Threads, 2nd Edition

by Scott Oaks Henry Wong

Revised and expanded to cover Java 2, Java Threads shows you how to take full advantage of Java's thread facilities: where to use threads to increase efficiency, how to use them effectively, and how to avoid common mistakes. It thoroughly covers the Thread and ThreadGroup classes, the Runnable interface, and the language's synchronized operator. The book pays special attention to threading issues with Swing, as well as problems like deadlock, race condition, and starvation to help you write code without hid

Java Threads, 2nd Edition

by Scott Oaks Henry Wong

Threads aren't a new idea: many operating systems and languages support them. But despite widespread support, threads tend to be something that everyone talks about, but few use. Programming with threads has a reputation for being tricky and nonportable. Not so with Java. Java's thread facilities are easy to use, and--like everything else in Java--are completely portable between platforms. And that's a good thing, because it's impossible to write anything but the simplest applet without encountering threads. If you want to work with Java, you have to learn about threads. This new edition shows you how to take full advantage of Java's thread facilities: where to use threads to increase efficiency, how to use them effectively, and how to avoid common mistakes. Java Threads discusses problems like deadlock, race condition, and starvation in detail, helping you to write code without hidden bugs. It brings you up to date with the latest changes in the thread interface for JDK 1.2. The book offers a thorough discussion of the Thread and ThreadGroup classes, the Runnable interface, the language's synchronized operator. It explains thread scheduling ends by developing a CPUSchedule class, showing you how to implement your own scheduling policy. In addition, Java Threads shows you how to extend Java's thread primitives. Other extended examples include classes that implement reader/writer locks, general locks, locks at arbitrary scope, and asynchronous I/O. This edition also adds extensive examples on thread pools, advanced synchronization technique, like condition variables, barriers, and daemon locks. It shows how to work with classes that are not thread safe, and pays special attention to threading issues with Swing. A new chapter shows you how to write parallel code for multiprocessor machines. In short, Java Threads covers everything you need to know about threads, from the simplest animation applet to the most complex applications. If you plan to do any serious work in Java, you will find this book invaluable. Examples available online. Covers Java 2.

JavaScript Application Cookbook

by Jerry Bradenbaugh

JavaScript Application Cookbook literally hands the Webmaster a set of ready-to-go, client-side JavaScript applications with thorough documentation to help them understand and extend the applications. By providing such a set of applications, JavaScript Application Cookbook allows Webmasters to immediately add extra functionality to their Web sites.

JavaScript Application Cookbook

by Jerry Bradenbaugh

There is a serious information gap for Webmasters learning client-side JavaScript skills and trying to solve common Web-related problems. Knowing the syntax is one thing, being able to build a useful application is another. And while there are dozens of "how- to" JavaScript books available, few literally hand the Webmaster a set of ready-to-go, client-side JavaScript applications with thorough documentation that enable the reader to fully understand and extend those applications. By providing such a set of applications, JavaScript Application Cookbook allows Webmasters to immediately add extra functionality to their Web sites. This book targets readers with two different skill sets. The primary target is JavaScript-knowledgeable Webmasters and designers who can immediately begin constructing their own versions of the applications. The secondary target is those with little or no JavaScript experience. The included applications are ready for immediate use and require little customization. This book explores both the code and the techniques that are centered around core JavaScript functionality, a functionality that will not become incompatible or obsolete. The source file design of most applications and libraries will help modularize reader Web sites and facilitate easier site management and coding practices. Chapters are organized by application. Among the included applications are: A client-side search engine that will show coders how to build their own search engine and get excellent results, all with a client-side tool A drag-and-drop greeting application that lets users custom build and send DHTML email greetings A GUI image rollover tool that generates cross-browser image rollover code for all versions of JavaScript A robust client-side shopping cart application that lets shoppers browse and shop, while the application keeps a tab of the shopper's selections and a running bill, including tax and shipping An online test application that auto-administers, grades, and displays answers to online exams or surveys An additional value to this book is an online resource (http://www.serve.com/hotsyte/) that discusses the applications and points to other resources. With its focus on providing practical real-world solutions for Webmasters, JavaScript Application Cookbook is destined to become a staple for every JavaScript developer, regardless of experience.

Joe Celko's SQL for Smarties: Advanced SQL Programming

by Joe Celko

SQL for Smarties was hailed as the first book devoted explicitly to the advanced techniques you need to transform yourself into an expert SQL programmer. Now, in this fully updated second edition, SQL mastermind Joe Celko keeps you moving forward, using his entertaining, conversational style to teach you the best solutions to old and new challenges and to convey the way you need to think if you really want to get the most out of your SQL programming efforts. Inside, logic- and set-based analyses replace the traditional, procedural approach to problem-solving, helping you make the conceptual leap that separates an SQL guru from the rest of the pack. As you catch on to Celko's approach, you'll devour what he has to say about some of SQL's toughest topics: how aggregate functions really work, the best way to work with NULLs, how and why to fake array structures, and much more. This book gives special emphasis to SQL-92 and product-independent techniques that let you optimize performance or achieve highly specialized behavior, regardless of the RDBMS with which you work. If you're serious about SQL, you won't let SQL for Smarties out of your sight.

Knowledge-Based Intelligent Techniques in Character Recognition (International Series On Computational Intelligence Ser. #9)

by Lakhmi C. Jain; Beatrice Lazzerini

Knowledge-Based Intelligent Techniques in Character Recognition presents research results on intelligent character recognition techniques, reflecting the tremendous worldwide interest in the applications of knowledge-based techniques in this challenging field.This resource will interest anyone involved in computer science, computer engineering, applied mathematics, or related fields. It will also be of use to researchers, application engineers and students who wish to develop successful character recognition systems such as those used in reading addresses in a postal routing system or processing bank checks.Features

Knowledge Networking: Creating The Collaborative Enterprise

by David Skyrme

Knowledge Networking explains the strategic, organizational and human impact of technologies that support knowledge: the internet, groupware, collaborative technologies. It shows how they can transform organizational practices and help to improve both individual and team performances. Based on proven experience and includes customised toolkits, cases and action plans. From pooling expertise on a sales bid via computer referencing, to improving customer service using the flexible office, the author demonstrates how potential can become practice.Knowledge management is the big management idea currently influencing organizations, and Knowledge Networking explores the global impact of sharing knowledge and expertise. It is a highly practical text which includes customised toolkits, cases and action plans to enable individuals and teams to improve their performance.

Kodeen liburua

by Simon Singh

Milaka urtez, komunikazioaren eraginkortasuna izan dute ardatz errege-erreginek eta jeneralek beren herrialdeak gobernatzeko eta armadak zuzentzeko. Aldi berean, ondotxo zekiten zer ondorio zituzten beren mezuak esku okerretara iristeak, herrialde lehiakideei sekretu baliotsuak ezagutarazteak eta funtsezko informazioa etsaien esku uzteak. Mezuak etsaien eskuetara heltzeko arrisku eta mehatxuak bultzatu zuen garatzea kodeak eta zifrak: mezuak mozorrotzeko teknikak, dagokion hartzailea bakarrik izan dadin mezua irakurtzeko gai.<P><P> Sekretu-premiaren ondorioz, kodeak egiteaz arduratzen diren sailak sortu dituzte herrialdeek, eta sail horien ardura da ahalik eta koderik egokienak sortzea komunikazioen segurtasuna bermatzeko. Aldi berean, etsaien kode-hausleak kode horiek hausten eta, hala, sekretuak lapurtzen saiatu dira beti. Kode-hausleak hizkuntzaren alkimistak dira, esanahirik gabeko ikurretatik abiaturik esanahidun hitzak biltzeko gai den tribu mistikoa. Kode eta zifren historia kodegileen eta kode-hausleen arteko borroka zaharraren istorioa da, historiaren bilakaeran eragin berebizikoa izan duen arma intelektualen lehia.<P> Kodeen liburua idaztean, bi helburu nagusi izan ditut. Lehenengoa, kodeen eboluzioa deskribatzea. Eboluzioa termino egokia da, bai, kodeen garapena borroka ebolutibo gisa ikus baitaiteke. Kode batek kode-hausleen erasoak jasaten ditu beti. Kode-hausleek kode baten ahultasuna agerian uzten duen arma berriren bat garatzen dutenean, balioa galtzen du kode horrek. Desagertu egiten da, edo kode berri indartsuago bihurtzen. Era berean, kode berri horrek kode-hausleek haren ahulezia aurkitu arte bakarrik balioko du; eta horrela behin eta berriz. Bakterio baten andui infekzioso batekin gertatzen denaren antzekoa da. Bakterioak bizi eta hazi egiten dira, harik eta medikuek bakterioaren ahulezia agerian utzi eta hiltzen dituen antibiotiko bat aurkitzen duten arte. Bakterioek, orduan, eboluzionatu egin behar izaten dute, eta antibiotikoa engainatzen saiatu; eta, hori lortzen badute, aurrera egiten dute, eta berriz zabaltzen dira. Bakterioek eboluzionatu egin behar dute etengabe, antibiotiko berrien sarraskiari ihes egingo badiote.

Learning DCOM

by Thuan L. Thai

DCOM -- the Distributed Component Object Model -- is a recent upgrade of a time-honored and well-tested technology promoted by Microsoft for distributed object programming. Now that components are playing a larger and larger part in Windows 98, Windows NT 4.0, and Windows 2000, every Windows programmer will want to understand the technology. DCOM competes with CORBA as a rich and robust method for creating expandable and flexible components, allowing you to plug in new parts conveniently and upgrade without the need for code changes to every program that uses your component. This book introduces C++ programmers to DCOM and gives them the basic tools they need to write secure, maintainable programs. While using Visual C++ development tools and wizards where appropriate, the author never leaves the results up to magic. The C++ code used to create distributed components and the communications exchanged between systems and objects are described at a level where the reader understands their significance and can use the insights for such tasks as debugging and improving performance. The first few chapters explain both the remote procedure calls that underlie DCOM's communication and the way DCOM uses C++ classes. Readers become firmly grounded in the relation between components, classes, and objects, the ways objects are created and destroyed, how clients find servers, and the basics of security and threading. After giving you a grounding in how DCOM works, this book introduces you to the Microsoft tools that make it all easy. By showing what really happens each time you choose a button in a wizard, Learning DCOM makes it possible for you to choose what you need. This book is for anyone who wants to understand DCOM. While thoroughly practical in its goals, it doesn't stint on the background you need to make your programs safe, efficient, and easy to maintain. Topics include: MIDL (Microsoft Interface Definition Language, the language for defining COM interfaces) COM error and exception handling Custom, dispatch, and dual interfaces Standard and custom factories Management of in-process versus out-of-process servers Distributed memory management Pragmatic explanation of the DCOM wire protocol Standard, custom, handler, and automation marshaling Multithreading and apartments Security at the system configuration and programming level Active Template Library (ATL), ATL wizards -- and what they don't do Writing a component that can be invoked from Visual Basic Techniques for using distributed components Creating an ActiveX control and embedding it in a Web client Authentication and the use of Windows NT security features Techniques for merging marshaling code Connection and distributed events management An introduction to COM+ features

Learning in Non-Stationary Environments

by Moamar Sayed-Mouchaweh Edwin Lughofer

Recent decades have seen rapid advances in automatization processes, supported by modern machines and computers. The result is significant increases in system complexity and state changes, information sources, the need for faster data handling and the integration of environmental influences. Intelligent systems, equipped with a taxonomy of data-driven system identification and machine learning algorithms, can handle these problems partially. Conventional learning algorithms in a batch off-line setting fail whenever dynamic changes of the process appear due to non-stationary environments and external influences. Learning in Non-Stationary Environments: Methods and Applications offers a wide-ranging, comprehensive review of recent developments and important methodologies in the field. The coverage focuses on dynamic learning in unsupervised problems, dynamic learning in supervised classification and dynamic learning in supervised regression problems. A later section is dedicated to applications in which dynamic learning methods serve as keystones for achieving models with high accuracy. Rather than rely on a mathematical theorem/proof style, the editors highlight numerous figures, tables, examples and applications, together with their explanations. This approach offers a useful basis for further investigation and fresh ideas and motivates and inspires newcomers to explore this promising and still emerging field of research.

Learning Microsoft Office 2000

by Jennifer Fulton Nancy Kaczmarczyk Sue Plumley Suzanne Weixel Rick Winter

Learning Microsoft Office 2000 is made up of six chapters: Basics, Word 2000, Excel 2000, Access 2000, PowerPoint 2000 and Challenge Lesson. This book is not merely a reference tool but a hands-on tutorial which offers fast, easy, and self-paced exercises. They walk readers through using all of the new features of Office 2000.

Lie Algebraic Methods in Integrable Systems (Chapman And Hall/crc Research Notes In Mathematics Ser. #Vol. 415)

by Amit K. Roy-Chowdhury

Over the last thirty years, the subject of nonlinear integrable systems has grown into a full-fledged research topic. In the last decade, Lie algebraic methods have grown in importance to various fields of theoretical research and worked to establish close relations between apparently unrelated systems. The various ideas associated with Lie algebra and Lie groups can be used to form a particularly elegant approach to the properties of nonlinear systems. In this volume, the author exposes the basic techniques of using Lie algebraic concepts to explore the domain of nonlinear integrable systems. His emphasis is not on developing a rigorous mathematical basis, but on using Lie algebraic methods as an effective tool.The book begins by establishing a practical basis in Lie algebra, including discussions of structure Lie, loop, and Virasor groups, quantum tori and Kac-Moody algebras, and gradation. It then offers a detailed discussion of prolongation structure and its representation theory, the orbit approach-for both finite and infinite dimension Lie algebra. The author also presents the modern approach to symmetries of integrable systems, including important new ideas in symmetry analysis, such as gauge transformations, and the "soldering" approach. He then moves to Hamiltonian structure, where he presents the Drinfeld-Sokolov approach, the Lie algebraic approach, Kupershmidt's approach, Hamiltonian reductions and the Gelfand Dikii formula. He concludes his treatment of Lie algebraic methods with a discussion of the classical r-matrix, its use, and its relations to double Lie algebra and the KP equation.

Linear System Theory and Design

by Chi-Tsong Chen

An extensive revision of the author's highly successful text, this third edition of Linear System Theory and Design has been made more accessible to students from all related backgrounds. After introducing the fundamental properties of linear systems, the text discusses design using state equations and transfer functions. In state-space design, Lyapunov equations are used extensively to design state feedback and state estimators. In the discussion of transfer-function design, pole placement, model matching, and their applications in tracking and disturbance rejection are covered. Both one-and two-degree-of-freedom configurations are used. All designs can be accomplished by solving sets of linear algebraic equations. <p><p> All results in this new edition are developed for numerical computation and illustrated using MATLAB, with an emphasis on the ideas behind the computation and interpretation of results. This book develops all theorems and results in a logical way so that readers can gain an intuitive understanding of the theorems. This revised edition begins with the time-invariant case and extends through the time-varying case. It also starts with single-input single-output design and extends to multi-input multi-output design. Striking a balance between theory and applications, Linear System Theory and Design, 3/e, is ideal for use in advanced undergraduate/first-year graduate courses in linear systems and multivariable system design in electrical, mechanical, chemical, and aeronautical engineering departments. It assumes a working knowledge of linear algebra and the Laplace transform and an elementary knowledge of differential equations.

Linux Bible: Boot Up Ubuntu, Fedora, Knoppix, Debian, Suse, And 11 Other Distributions (Bible #772)

by Christopher Negus

The industry favorite Linux guide, updated for Red Hat Enterprise Linux 7 and the cloud Linux Bible, 9th Edition is the ultimate hands-on Linux user guide, whether you're a true beginner or a more advanced user navigating recent changes. This updated ninth edition covers the latest versions of Red Hat Enterprise Linux 7 (RHEL 7), Fedora 21, and Ubuntu 10.04 LTS, and includes new information on cloud computing and development with guidance on Openstack and Cloudforms. With a focus on RHEL 7, this practical guide gets you up to speed quickly on the new enhancements for enterprise-quality file systems, the new boot process and services management, firewalld, and the GNOME 3 desktop. Written by a Red Hat expert, this book provides the clear explanations and step-by-step instructions that demystify Linux and bring the new features seamlessly into your workflow. This useful guide assumes a base of little or no Linux knowledge, and takes you step by step through what you need to know to get the job done. Get Linux up and running quickly Master basic operations and tackle more advanced tasks Get up to date on the recent changes to Linux server system management Bring Linux to the cloud using Openstack and Cloudforms Linux Bible, 9th Edition is the one resource you need, and provides the hands-on training that gets you on track in a flash.

Local Area Network Handbook, Sixth Edition

by John P. Slone

Today's enterprise cannot effectively function without a network, and today's enterprise network is almost always based on LAN technology. In a few short years, LANs have become an essential element of today's business environment. This time in the spotlight, while well deserved, has not come without a price. Businesses now insist that LANs deliver vast and ever-increasing quantities of business-critical information and that they do it efficiently, flawlessly, without fail, and most of all, securely. Today's network managers must consistently deliver this level of performance, and must do so while keeping up with ever changing, ever increasing demands without missing a beat. At the same time, today's IT managers must deliver business-critical information systems in an environment that has undergone radical paradigm shifts in such widely varied fields as computer architecture, operating systems, application development, and security. The Local Area Networks Handbook focuses on this collective environment, in which networking and information technology work together to create LAN-based enterprise networks. Topics have been selected and organized with this in mind, providing both depth and breadth of coverage. The handbook will provide you not only an understanding of how LANs work and how to go about selecting and implementing LAN products, but also of how to leverage LAN capabilities for the benefit of your enterprise.

Making Universal Service Policy: Enhancing the Process Through Multidisciplinary Evaluation (LEA Telecommunications Series)

by Iv Barbara A. Cherry Steven S. Wildman Allen S. Hammond

This book is the outgrowth of shared interests between the editors and the contributing authors to provide a multidisciplinary perspective in evaluating universal service policy and recommending policy changes to accommodate a more competitive telecommunications environment. The book is interdisciplinary in nature to reflect the extremely complex context in which universal service policy is formed. The chapter authors represent a broad cross-section of disciplinary training, professional positions, and relationships in the telecommunications industry. Academic disciplines represented include law, economics, anthropology, communication, and business. This book's purpose is to significantly enhance the development of effective telecommunications universal service policy among policymakers, industry members, and stakeholders in the United States. Universal service policy has been, and will continue to be, both enabled and constrained by the simultaneous interaction of social, political, technological, and economic forces in the environment in which it is formed. A more effective process for policy design is to seek agreement on how entitlements embedded in universal service policy should be modified as circumstances invariably change over time. Therefore, the volume reflects recent significant developments in U.S. universal service policy--the implementation of which continues to unfold.

Mastering Algorithms with Perl

by Jon Orwant Jarkko Hietaniemi John Macdonald

Many programmers would love to use Perl for projects that involve heavy lifting, but miss the many traditional algorithms that textbooks teach for other languages. Computer scientists have identified many techniques that a wide range of programs need, such as: Fuzzy pattern matching for text (identify misspellings!) Finding correlations in data Game-playing algorithms Predicting phenomena such as Web traffic Polynomial and spline fitting Using algorithms explained in this book, you too can carry out traditional programming tasks in a high-powered, efficient, easy-to-maintain manner with Perl. This book assumes a basic understanding of Perl syntax and functions, but not necessarily any background in computer science. The authors explain in a readable fashion the reasons for using various classic programming techniques, the kind of applications that use them, and -- most important -- how to code these algorithms in Perl. If you are an amateur programmer, this book will fill you in on the essential algorithms you need to solve problems like an expert. If you have already learned algorithms in other languages, you will be surprised at how much different (and often easier) it is to implement them in Perl. And yes, the book even has the obligatory fractal display program. There have been dozens of books on programming algorithms, some of them excellent, but never before has there been one that uses Perl. The authors include the editor of The Perl Journal and master librarian of CPAN; all are contributors to CPAN and have archived much of the code in this book there. "This book was so exciting I lost sleep reading it." Tom Christiansen

MATLAB for Psychologists

by Alessandro Soranzo Mauro Borgo Massimo Grassi

The matrix laboratory interactive computing environment--MATLAB--has brought creativity to research in diverse disciplines, particularly in designing and programming experiments. More commonly used in mathematics and the sciences, it also lends itself to a variety of applications across the field of psychology. For the novice looking to use it in experimental psychology research, though, becoming familiar with MATLAB can be a daunting task. MATLAB for Psychologists expertly guides readers through the component steps, skills, and operations of the software, with plentiful graphics and examples to match the reader's comfort level. Using an extended illustration, this concise volume explains the program's usefulness at any point in an experiment, without the limits imposed by other types of software. And the authors demonstrate the responsiveness of MATLAB to the individual's research needs, whether the task is programming experiments, creating sensory stimuli, running simulations, or calculating statistics for data analysis. Key features of the coverage: Thinking in a matrix way.Handling and plotting data.Guidelines for improved programming, sound, and imaging.Statistical analysis and signal detection theory indexes.The Graphical User Interface.The Psychophysics Toolbox.MATLAB for Psychologists serves a wide audience of advanced undergraduate and graduate level psychology students, professors, and researchers as well as lab technicians involved in programming psychology experiments.

Merged Evolution: Long-term Complications of Biotechnology and Informatin Technology (World Futures General Evolution Studies #Vol. 14)

by Susantha Goonatilake

Merged Evolution charts the implications of two major forces of change, information technology and biotechnology, combined with a third force, that of 'artifactual' information, which is handed down dichronically from computing device to computing device.Through developments anticipated in the near future, Dr. Goonatilake describes the merging of these three systems, a convergence which will profoundly affect the biological, social, and technical fields much more than previous studies have implied. Together these changes yield an entirely different history - and a different future of the world for life, nature and civilization. This book addresses the broader issue arising from these important developments using the unifying perspective of general evolutionary theory to yield a fresh and profound insight.

Refine Search

Showing 53,776 through 53,800 of 54,505 results