0
Your cart

Your cart is empty

Browse All Departments
Price
  • R100 - R250 (9)
  • R250 - R500 (62)
  • R500+ (5,635)
  • -
Status
Format
Author / Contributor
Publisher

Books > Computing & IT > Computer programming > Algorithms & procedures

Data Structures and Algorithms Using C# (Paperback): Michael McMillan Data Structures and Algorithms Using C# (Paperback)
Michael McMillan
R1,262 Discovery Miles 12 620 Ships in 12 - 17 working days

C# programmers: no more translating data structures from C++ or Java to use in your programs! Mike McMillan provides a tutorial on how to use data structures and algorithms plus the first comprehensive reference for C# implementation of data structures and algorithms found in the .NET Framework library, as well as those developed by the programmer. The approach is very practical, using timing tests rather than Big O notation to analyze the efficiency of an approach. Coverage includes arrays and array lists, linked lists, hash tables, dictionaries, trees, graphs, and sorting and searching algorithms, as well as more advanced algorithms such as probabilistic algorithms and dynamic programming. This is the perfect resource for C# professionals and students alike.

Advanced Data Analytics Using Python - With Architectural Patterns, Text and Image Classification, and Optimization Techniques... Advanced Data Analytics Using Python - With Architectural Patterns, Text and Image Classification, and Optimization Techniques (Paperback, 2nd ed.)
Sayan Mukhopadhyay, Pratip Samanta
R1,149 R912 Discovery Miles 9 120 Save R237 (21%) Ships in 10 - 15 working days

Understand advanced data analytics concepts such as time series and principal component analysis with ETL, supervised learning, and PySpark using Python. This book covers architectural patterns in data analytics, text and image classification, optimization techniques, natural language processing, and computer vision in the cloud environment. Generic design patterns in Python programming is clearly explained, emphasizing architectural practices such as hot potato anti-patterns. You'll review recent advances in databases such as Neo4j, Elasticsearch, and MongoDB. You'll then study feature engineering in images and texts with implementing business logic and see how to build machine learning and deep learning models using transfer learning. Advanced Analytics with Python, 2nd edition features a chapter on clustering with a neural network, regularization techniques, and algorithmic design patterns in data analytics with reinforcement learning. Finally, the recommender system in PySpark explains how to optimize models for a specific application. What You'll Learn Build intelligent systems for enterprise Review time series analysis, classifications, regression, and clustering Explore supervised learning, unsupervised learning, reinforcement learning, and transfer learning Use cloud platforms like GCP and AWS in data analytics Understand Covers design patterns in Python Who This Book Is For Data scientists and software developers interested in the field of data analytics.

An Introduction to Parallel and Vector Scientific Computation (Paperback): Ronald W. Shonkwiler, Lew Lefton An Introduction to Parallel and Vector Scientific Computation (Paperback)
Ronald W. Shonkwiler, Lew Lefton
R1,227 Discovery Miles 12 270 Ships in 12 - 17 working days

In this text, students of applied mathematics, science and engineering are introduced to fundamental ways of thinking about the broad context of parallelism. The authors begin by giving the reader a deeper understanding of the issues through a general examination of timing, data dependencies, and communication. These ideas are implemented with respect to shared memory, parallel and vector processing, and distributed memory cluster computing. Threads, OpenMP, and MPI are covered, along with code examples in Fortran, C, and Java. The principles of parallel computation are applied throughout as the authors cover traditional topics in a first course in scientific computing. Building on the fundamentals of floating point representation and numerical error, a thorough treatment of numerical linear algebra and eigenvector/eigenvalue problems is provided. By studying how these algorithms parallelize, the reader is able to explore parallelism inherent in other computations, such as Monte Carlo methods.

Making Music with Computers - Creative Programming in Python (Paperback): Bill Manaris, Andrew R. Brown Making Music with Computers - Creative Programming in Python (Paperback)
Bill Manaris, Andrew R. Brown
R1,499 Discovery Miles 14 990 Ships in 9 - 15 working days

Teach Your Students How to Use Computing to Explore Powerful and Creative Ideas

In the twenty-first century, computers have become indispensable in music making, distribution, performance, and consumption. Making Music with Computers: Creative Programming in Python introduces important concepts and skills necessary to generate music with computers. It interweaves computing pedagogy with musical concepts and creative activities, showing students how to integrate the creativity and design of the arts with the mathematical rigor and formality of computer science.

The book provides an introduction to creative software development in the Python programming language. It uses innovative music-creation activities to illustrate introductory computer programming concepts, including data types, algorithms, operators, iteration, lists, functions, and classes. The authors also cover GUIs, event-driven programming, big data, sonification, MIDI programming, client server programming, recursion, fractals, and complex system dynamics.

Requiring minimal musical or programming experience, the text is designed for courses in introductory computer science and computing in the arts. It helps students learn computer programming in a creative context and understand how to build computer music applications. Also suitable for self-study, the book shows musicians and digital music enthusiasts how to write music software and create algorithmic music compositions.

Web Resource
A supplementary website (http: //jythonMusic.org) provides a music library and other software resources used in the text. The music library is an extension of the jMusic library and incorporates other cross-platform programming tools. The website also offers example course and associated media resources."

Core-Chasing Algorithms for the Eigenvalue Problem (Paperback): Jared L. Aurentz, Thomas Mach, Leonardo Robol, Raf Vandebril,... Core-Chasing Algorithms for the Eigenvalue Problem (Paperback)
Jared L. Aurentz, Thomas Mach, Leonardo Robol, Raf Vandebril, David S Watkins
R1,976 Discovery Miles 19 760 Ships in 12 - 17 working days

Eigenvalue computations are ubiquitous in science and engineering. John Francis's implicitly shifted QR algorithm has been the method of choice for small to medium sized eigenvalue problems since its invention in 1959. This book presents a new view of this classical algorithm. While Francis's original procedure chases bulges, the new version chases core transformations, which allows the development of fast algorithms for eigenvalue problems with a variety of special structures. This also leads to a fast and backward stable algorithm for computing the roots of a polynomial by solving the companion matrix eigenvalue problem. The authors received a SIAM Outstanding Paper prize for this work. This book will be of interest to researchers in numerical linear algebra and their students.

Lectures in Parallel Computation (Paperback, Revised): Alan Gibbons, Paul Spirakis Lectures in Parallel Computation (Paperback, Revised)
Alan Gibbons, Paul Spirakis
R2,062 Discovery Miles 20 620 Ships in 12 - 17 working days

The foundations of parallel computation, especially the efficiency of computation, are the concern of this book. Distinguished international researchers have contributed fifteen chapters which together form a coherent stream taking the reader who has little prior knowledge of the field to a position of being familiar with leading edge issues. The book may also function as a source of teaching material and reference for researchers. The first part is devoted to the Parallel Random Access Machine (P-RAM) model of parallel computation. The initial chapters justify and define the model, which is then used for the development of algorithm design in a variety of application areas such as deterministic algorithms, randomisation and algorithm resilience. The second part deals with distributed memory models of computation. The question of efficiently implementing P-RAM algorithms within these models is addressed as are the immensely interesting prospects for general purpose parallel computation.

Data Structures and Algorithms Using Visual Basic.NET (Paperback, New): Michael McMillan Data Structures and Algorithms Using Visual Basic.NET (Paperback, New)
Michael McMillan
R1,598 Discovery Miles 15 980 Ships in 12 - 17 working days

This is the first Visual Basic.NET book to provide a comprehensive discussion of the major data structures and algorithms. Here, instead of having to translate material on C++ or Java, the professional or student VB.NET programmer will find a tutorial on how to use data structures and algorithms and a reference for implementation using VB.NET for data structures and algorithms from the .NET Framework Class Library as well as those which must be developed by the programmer. In an object-oriented fashion, the author presents arrays and arraylists, linked lists, hash tables, dictionaries, trees, graphs, sorting and searching as well as more advanced algorithms, such as probabilistic algorithms and dynamic programming. His approach is very practical, for example using timing tests rather than Big O analysis to compare the performance of data structures and algorithms. This book can be used in both beginning and advanced computer programming courses that use the VB.NET language and, most importantly, by the professional VB programmer.

Design and Analysis of Distributed Algorithms (Hardcover, New): N. Santoro Design and Analysis of Distributed Algorithms (Hardcover, New)
N. Santoro
R4,696 Discovery Miles 46 960 Ships in 12 - 17 working days

Design And Analyze algorithms for distributed computing environments

"Design and Analysis of Distributed Algorithms" focuses on developing problem-solving skills and fully exploiting design tools and techniques. Moreover, the author helps readers develop the analytical tools and skills needed to evaluate the costs of complex designs and protocols.

This text is based on a simple and fully reactive computational model that allows for intuitive comprehension and logical designs. The principles and techniques that users learn can be applied to any distributed computing environment (e.g., distributed systems, communication networks, data networks, grid networks, internet, etc.). Based on a method developed and refined during the author's twenty years of teaching experience, the text provides a wealth of unique material and learning aids that enable the reader to learn how to design algorithms and protocols to solve problems and perform tasks efficiently in a distributed computing environment. Features include: Emphasis on developing problem-solving skills and fully leveraging design tools and techniques with a straightforward, easy-to-follow writing style Chapter on distributed data and structures, an important area not covered in comparable texts Detailed coverage of synchronous computations, a necessary element for "energy aware" computing Theoretical and experimental exercises in each chapter that allow readers to apply their newfound skills

All algorithms and protocols presented in the text, as well as those in the exercises, are easily and immediately programmable. References at the end of each chapter lead readers to additional materials for further study.

A naturaltextbook for upper-level undergraduates and graduate students, with its emphasis on problem solving, this book is also ideal for system-protocol designers and communications software engineers and developers. It will enable them to understand the principles of how to design workable, efficient protocols in any distributed computing environment.

Geographical Data Imperfection 1 - From Theory to Applications (Hardcover): M Batton-Hubert Geographical Data Imperfection 1 - From Theory to Applications (Hardcover)
M Batton-Hubert
R3,959 Discovery Miles 39 590 Ships in 12 - 17 working days

Geomatics is a field of science that has been intimately intertwined with our daily lives for almost 30 years, to the point where we often forget all the challenges it entails. Who does not have a navigation application on their phone or regularly engage with geolocated data? What is more, in the coming decades, the accumulation of geo-referenced data is expected to increase significantly. This book focuses on the notion of the imperfection of geographic data, an important topic in geomatics. It is essential to be able to define and represent the imperfections that are encountered in geographical data. Ignoring these imperfections can lead to many risks, for example in the use of maps which may be rendered inaccurate. It is, therefore, essential to know how to model and treat the different categories of imperfection. A better awareness of these imperfections will improve the analysis and the use of this type of data.

Artificial Intelligence with Python (Hardcover, 1st ed. 2022): Teik Toe Teoh, Zheng Rong Artificial Intelligence with Python (Hardcover, 1st ed. 2022)
Teik Toe Teoh, Zheng Rong
R1,668 R1,567 Discovery Miles 15 670 Save R101 (6%) Ships in 9 - 15 working days

Entering the field of artificial intelligence and data science can seem daunting to beginners with little to no prior background, especially those with no programming experience. The concepts used in self-driving cars and virtual assistants like Amazon's Alexa may seem very complex and difficult to grasp. The aim of Artificial Intelligence in Python is to make AI accessible and easy to understand for people with little to no programming experience though practical exercises. Newcomers will gain the necessary knowledge on how to create such systems, which are capable of executing tasks that require some form of human-like intelligence. This book introduces readers to various topics and examples of programming in Python, as well as key concepts in artificial intelligence. Python programming skills will be imparted as we go along. Concepts and code snippets will be covered in a step-by-step manner, to guide and instill confidence in beginners. Complex subjects in deep learning and machine learning will be broken down into easy-to-digest content and examples. Artificial intelligence implementations will also be shared, allowing beginners to generate their own artificial intelligence algorithms for reinforcement learning, style transfer, chatbots, speech, and natural language processing.

Programming Languages and Systems - 31st European Symposium on Programming, ESOP 2022, Held as Part of the European Joint... Programming Languages and Systems - 31st European Symposium on Programming, ESOP 2022, Held as Part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2022, Munich, Germany, April 2-7, 2022, Proceedings (Paperback, 1st ed. 2022)
Ilya Sergey
R1,107 Discovery Miles 11 070 Ships in 12 - 17 working days

This open access book constitutes the proceedings of the 31st European Symposium on Programming, ESOP 2022, which was held during April 5-7, 2022, in Munich, Germany, as part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2022. The 21 regular papers presented in this volume were carefully reviewed and selected from 64 submissions. They deal with fundamental issues in the specification, design, analysis, and implementation of programming languages and systems.

Purely Functional Data Structures (Paperback, New Ed): Chris Okasaki Purely Functional Data Structures (Paperback, New Ed)
Chris Okasaki
R1,340 Discovery Miles 13 400 Ships in 12 - 17 working days

Most books on data structures assume an imperative language such as C or C++. However, data structures for these languages do not always translate well to functional languages such as Standard ML, Haskell, or Scheme. This book describes data structures from the point of view of functional languages, with examples, and presents design techniques that allow programmers to develop their own functional data structures. The author includes both classical data structures, such as red-black trees and binomial queues, and a host of new data structures developed exclusively for functional languages. All source code is given in Standard ML and Haskell, and most of the programs are easily adaptable to other functional languages. This handy reference for professional programmers working with functional languages can also be used as a tutorial or for self-study.

Isosurfaces - Geometry, Topology, and Algorithms (Hardcover, New): Rephael Wenger Isosurfaces - Geometry, Topology, and Algorithms (Hardcover, New)
Rephael Wenger
R3,294 Discovery Miles 32 940 Ships in 12 - 17 working days

Ever since Lorensen and Cline published their paper on the Marching Cubes algorithm, isosurfaces have been a standard technique for the visualization of 3D volumetric data. Yet there is no book exclusively devoted to isosurfaces. Isosurfaces: Geometry, Topology, and Algorithms represents the first book to focus on basic algorithms for isosurface construction. It also gives a rigorous mathematical perspective on some of the algorithms and results. In color throughout, the book covers the Marching Cubes algorithm and variants, dual contouring algorithms, multilinear interpolation, multiresolution isosurface extraction, isosurfaces in four dimensions, interval volumes, and contour trees. It also describes data structures for faster isosurface extraction as well as methods for selecting significant isovalues. For designers of visualization software, the book presents an organized overview of the various algorithms associated with isosurfaces. For graduate students, it provides a solid introduction to research in this area. For visualization researchers, the book serves as a reference to the vast literature on isosurfaces.

Self-Learning and Adaptive Algorithms for Business Applications - A Guide to Adaptive Neuro-Fuzzy Systems for Fuzzy Clustering... Self-Learning and Adaptive Algorithms for Business Applications - A Guide to Adaptive Neuro-Fuzzy Systems for Fuzzy Clustering Under Uncertainty Conditions (Paperback)
Zhengbing Hu, Yevgeniy V. Bodyanskiy, Oleksii Tyshchenko
R1,650 Discovery Miles 16 500 Ships in 12 - 17 working days

In today's data-driven world, more sophisticated algorithms for data processing are in high demand, mainly when the data cannot be handled with the help of traditional techniques. Self-learning and adaptive algorithms are now widely used by such leading giants that as Google, Tesla, Microsoft, and Facebook in their projects and applications. In this guide designed for researchers and students of computer science, readers will find a resource for how to apply methods that work on real-life problems to their challenging applications, and a go-to work that makes fuzzy clustering issues and aspects clear. Including research relevant to those studying cybernetics, applied mathematics, statistics, engineering, and bioinformatics who are working in the areas of machine learning, artificial intelligence, complex system modeling and analysis, neural networks, and optimization, this is an ideal read for anyone interested in learning more about the fascinating new developments in machine learning.

Delaunay Mesh Generation (Hardcover): Siu-Wing Cheng, Tamal K. Dey, Jonathan Shewchuk Delaunay Mesh Generation (Hardcover)
Siu-Wing Cheng, Tamal K. Dey, Jonathan Shewchuk
R3,273 Discovery Miles 32 730 Ships in 12 - 17 working days

Written by authors at the forefront of modern algorithms research, Delaunay Mesh Generation demonstrates the power and versatility of Delaunay meshers in tackling complex geometric domains ranging from polyhedra with internal boundaries to piecewise smooth surfaces. Covering both volume and surface meshes, the authors fully explain how and why these meshing algorithms work. The book is one of the first to integrate a vast amount of cutting-edge material on Delaunay triangulations. It begins with introducing the problem of mesh generation and describing algorithms for constructing Delaunay triangulations. The authors then present algorithms for generating high-quality meshes in polygonal and polyhedral domains. They also illustrate how to use restricted Delaunay triangulations to extend the algorithms to surfaces with ridges and patches and volumes with smooth surfaces. For researchers and graduate students, the book offers a rigorous theoretical analysis of mesh generation methods. It provides the necessary mathematical foundations and core theoretical results upon which researchers can build even better algorithms in the future. For engineers, the book shows how the algorithms work well in practice. It explains how to effectively implement them in the design and programming of mesh generation software.

Handbook of Real-Time Fast Fourier Transforms - Algorithms to Product Testing (Paperback): W. W. Smith Handbook of Real-Time Fast Fourier Transforms - Algorithms to Product Testing (Paperback)
W. W. Smith
R5,127 Discovery Miles 51 270 Ships in 12 - 17 working days

Electrical Engineering Handbook of Real-Time Fast Fourier Transforms Algorithms to Product Testing "This useful, logical, unbiased, FFT compendium allows the user to quickly and accurately obtain practical information to implement a solution or simply acquire a general overview without spending months gathering this information elsewhere." Jay Perry, Executive Vice President, Technology, Catalina Research, Inc. "This is a practical guide for understanding and using FFTs. Win's (Winthrop Smith, author) years of experience using FFTs to solve real-world problems comes through on page after page. If you're building an FFT processor, you'll find this book indispensable." Tony Agnello, President, Ariel Corp. FFTs are at the heart of ADSL, the new telecom standard (T1.413), which allows phones to transfer digital data 200 times faster and simultaneously transmit speech. Fast Fourier Transforms (FFTs) synthesize, recognize, enhance, compress, modify, or analyze signals in products such as Doppler weather radar, CT and MRI scans, AWACS radar, and satellite imaging radar. In this book, you will get the foundation and facts you need to implement FFT algorithms for many diverse applications. Key features you will put to immediate use include:

  • Comparison matrices and performance measures for objective selection of weighting functions, algorithm building blocks, algorithms, algorithm mappings, arithmetic formats, and DSP chips
  • Extensive algorithm examples with instructions for memory mapping and conversion to code
  • An unbiased listing of the FFT features of 51 fixed-point DSP chips, including ASIC and multiprocessor chips, 13 floating-point DSP chips, and six dedicated FFT chips
  • Testsignals with instructions and examples on how to detect and isolate errors during: FFT algorithm/code development and debugging, and end-product operation
  • Design examples for products that use frequency analysis, power spectrum estimation, linear filtering, and two-dimensional processing
  • Questions and answers for selecting commercial-off-the-shelf DSP boards
An all-in-one-source for implementing real-time FFT algorithms of any length, this book will be essential to engineers and other technical innovators who want to stay on the cutting edge of FFT technology.
Keras to Kubernetes - The Journey Of A Machine Learning Model To Production (Paperback): D. Rao Keras to Kubernetes - The Journey Of A Machine Learning Model To Production (Paperback)
D. Rao
R943 R717 Discovery Miles 7 170 Save R226 (24%) Ships in 12 - 17 working days

Build a Keras model to scale and deploy on a Kubernetes cluster We have seen an exponential growth in the use of Artificial Intelligence (AI) over last few years. AI is becoming the new electricity and is touching every industry from retail to manufacturing to healthcare to entertainment. Within AI, we re seeing a particular growth in Machine Learning (ML) and Deep Learning (DL) applications. ML is all about learning relationships from labeled (Supervised) or unlabeled data (Unsupervised). DL has many layers of learning and can extract patterns from unstructured data like images, video, audio, etc. Keras to Kubernetes: The Journey of a Machine Learning Model to Production takes you through real-world examples of building DL models in Keras for recognizing product logos in images and extracting sentiment from text. You will then take that trained model and package it as a web application container before learning how to deploy this model at scale on a Kubernetes cluster. You will understand the different practical steps involved in real-world ML implementations which go beyond the algorithms. - Find hands-on learning examples - Learn to uses Keras and Kubernetes to deploy Machine Learning models - Discover new ways to collect and manage your image and text data with Machine Learning - Reuse examples as-is to deploy your models - Understand the ML model development lifecycle and deployment to production If you re ready to learn about one of the most popular DL frameworks and build production applications with it, you ve come to the right place!

A Guide to Graph Algorithms (Paperback, 1st ed. 2022): Ton Kloks, Mingyu Xiao A Guide to Graph Algorithms (Paperback, 1st ed. 2022)
Ton Kloks, Mingyu Xiao
R1,520 R1,433 Discovery Miles 14 330 Save R87 (6%) Ships in 9 - 15 working days

This book A Guide to Graph Algorithms offers high-quality content in the research area of graph algorithms and explores the latest developments in graph algorithmics. The reader will gain a comprehensive understanding of how to use algorithms to explore graphs. It is a collection of texts that have proved to be trend setters and good examples of that. The book aims at providing the reader with a deep understanding of the structural properties of graphs that are useful for the design of efficient algorithms. These algorithms have applications in finite state machine modelling, social network theory, biology, and mathematics. The book contains many exercises, some up at present-day research-level. The exercises encourage the reader to discover new techniques by putting things in a clear perspective. A study of this book will provide the reader with many powerful tools to model and tackle problems in real-world scenarios.

Probability and Computing - Randomization and Probabilistic Techniques in Algorithms and Data Analysis (Hardcover, 2nd Revised... Probability and Computing - Randomization and Probabilistic Techniques in Algorithms and Data Analysis (Hardcover, 2nd Revised edition)
Michael Mitzenmacher, Eli Upfal
R1,617 Discovery Miles 16 170 Ships in 9 - 15 working days

Greatly expanded, this new edition requires only an elementary background in discrete mathematics and offers a comprehensive introduction to the role of randomization and probabilistic techniques in modern computer science. Newly added chapters and sections cover topics including normal distributions, sample complexity, VC dimension, Rademacher complexity, power laws and related distributions, cuckoo hashing, and the Lovasz Local Lemma. Material relevant to machine learning and big data analysis enables students to learn modern techniques and applications. Among the many new exercises and examples are programming-related exercises that provide students with excellent training in solving relevant problems. This book provides an indispensable teaching tool to accompany a one- or two-semester course for advanced undergraduate students in computer science and applied mathematics.

Foundations of Software Science and Computation Structures - 25th International Conference, FOSSACS 2022, Held as Part of the... Foundations of Software Science and Computation Structures - 25th International Conference, FOSSACS 2022, Held as Part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2022, Munich, Germany, April 2-7, 2022, Proceedings (Paperback, 1st ed. 2022)
Patricia Bouyer, Lutz Schroeder
R1,091 Discovery Miles 10 910 Ships in 12 - 17 working days

This open access book constitutes the proceedings of the 25th International Conference on Foundations of Software Science and Computational Structures, FOSSACS 2022, which was held during April 4-6, 2022, in Munich, Germany, as part of the European Joint Conferences on Theory and Practice of Software, ETAPS 2022. The 23 regular papers presented in this volume were carefully reviewed and selected from 77 submissions. They deal with research on theories and methods to support the analysis, integration, synthesis, transformation, and verification of programs and software systems.

Design and Analysis of Algorithms - A Contemporary Perspective (Hardcover): Sandeep Sen, Amit Kumar Design and Analysis of Algorithms - A Contemporary Perspective (Hardcover)
Sandeep Sen, Amit Kumar
R1,407 Discovery Miles 14 070 Ships in 12 - 17 working days

The text covers important algorithm design techniques, such as greedy algorithms, dynamic programming, and divide-and-conquer, and gives applications to contemporary problems. Techniques including Fast Fourier transform, KMP algorithm for string matching, CYK algorithm for context free parsing and gradient descent for convex function minimization are discussed in detail. The book's emphasis is on computational models and their effect on algorithm design. It gives insights into algorithm design techniques in parallel, streaming and memory hierarchy computational models. The book also emphasizes the role of randomization in algorithm design, and gives numerous applications ranging from data-structures such as skip-lists to dimensionality reduction methods.

Handbook of Numerical Methods for Hyperbolic Problems, Volume 18 - Applied and Modern Issues (Hardcover): Remi Abgrall,... Handbook of Numerical Methods for Hyperbolic Problems, Volume 18 - Applied and Modern Issues (Hardcover)
Remi Abgrall, Chi-Wang Shu; Series edited by Roland Glowinski, Qiang Du, Michael Hintermuller, …
R5,274 Discovery Miles 52 740 Ships in 12 - 17 working days

Handbook on Numerical Methods for Hyperbolic Problems: Applied and Modern Issues details the large amount of literature in the design, analysis, and application of various numerical algorithms for solving hyperbolic equations that has been produced in the last several decades. This volume provides concise summaries from experts in different types of algorithms, so that readers can find a variety of algorithms under different situations and become familiar with their relative advantages and limitations.

Computer Vision - Statistical Models for Marr's Paradigm (Hardcover, 1st ed. 2023): Song-Chun Zhu, Ying Nian Wu Computer Vision - Statistical Models for Marr's Paradigm (Hardcover, 1st ed. 2023)
Song-Chun Zhu, Ying Nian Wu
R1,950 R1,819 Discovery Miles 18 190 Save R131 (7%) Ships in 9 - 15 working days

As the first book of a three-part series, this book is offered as a tribute to pioneers in vision, such as Bela Julesz, David Marr, King-Sun Fu, Ulf Grenander, and David Mumford. The authors hope to provide foundation and, perhaps more importantly, further inspiration for continued research in vision. This book covers David Marr's paradigm and various underlying statistical models for vision. The mathematical framework herein integrates three regimes of models (low-, mid-, and high-entropy regimes) and provides foundation for research in visual coding, recognition, and cognition. Concepts are first explained for understanding and then supported by findings in psychology and neuroscience, after which they are established by statistical models and associated learning and inference algorithms. A reader will gain a unified, cross-disciplinary view of research in vision and will accrue knowledge spanning from psychology to neuroscience to statistics.

Contemporary Cryptology (Paperback, 2005 ed.): Dario Catalano, Ronald Cramer, Ivan Damgard, Giovanni Di Crescenzo, David... Contemporary Cryptology (Paperback, 2005 ed.)
Dario Catalano, Ronald Cramer, Ivan Damgard, Giovanni Di Crescenzo, David Pointcheval, …
R1,208 R1,096 Discovery Miles 10 960 Save R112 (9%) Ships in 12 - 17 working days

The aim of this text is to treat selected topics of the subject of contemporary cryptology, structured in five quite independent but related themes:
- efficient distributed computation modulo a shared secret
- multiparty computation
- foundations of modern cryptography
- provable security for public key schemes
- efficient and secure public-key cryptosystems.

Fast Python - Master the Basics to Write Faster Code (Paperback): Will Angel Fast Python - Master the Basics to Write Faster Code (Paperback)
Will Angel; Chris Conlan
R330 Discovery Miles 3 300 Ships in 10 - 15 working days
Free Delivery
Pinterest Twitter Facebook Google+
You may like...
Algorithms Illuminated - Omnibus Edition
Tim Roughgarden Hardcover R1,594 Discovery Miles 15 940
The Less Is More Linear Algebra of…
Daniela Calvetti, Erkki Somersalo Paperback R1,866 Discovery Miles 18 660
The Garbage Collection Handbook - The…
Richard Jones, Antony Hosking, … Hardcover R1,922 Discovery Miles 19 220
The Garbage Collection Handbook - The…
Richard Jones, Antony Hosking, … Paperback R1,450 Discovery Miles 14 500
How to Prove It - A Structured Approach
Daniel J. Velleman Paperback R1,117 Discovery Miles 11 170
A Practical Approach to Data Structures…
Sanjay Pahuja Hardcover R1,452 Discovery Miles 14 520
Grokking Deep Reinforcement Learning
Miguel Morales Paperback  (1)
R1,229 Discovery Miles 12 290
Quantum Computation
Helmut Bez, Tony Croft Hardcover R2,363 Discovery Miles 23 630
Handbook of Computer Programming with…
Dimitrios Xanthidis, Christos Manolas, … Hardcover R2,805 Discovery Miles 28 050
Digital Intermediation - Unseen…
Jonathon Hutchinson Paperback R1,116 Discovery Miles 11 160

 

Partners