Materias dentro de su búsqueda.
Materias dentro de su búsqueda.
- Development 190
- Computer programming 156
- Application software 150
- Python (Computer program language) 140
- Programming 134
- Engineering & Applied Sciences 117
- JavaScript (Computer program language) 101
- Java (Computer program language) 96
- Programming languages (Electronic computers) 83
- Data processing 82
- Computer Science 79
- Design 73
- Computer software 72
- Computer programs 68
- Web site development 67
- Artificial intelligence 60
- Management 59
- Video games 59
- Software engineering 55
- Computer networks 51
- Design and construction 51
- C (Computer program language) 48
- Machine learning 47
- Programming Languages, Compilers, Interpreters 47
- Web sites 45
- Database management 43
- Operating systems (Computers) 43
- C++ (Computer program language) 41
- Computer animation 41
- Computer graphics 39
-
1041Publicado 2015Tabla de Contenidos: “…5.5.3 The Handling Diagram5.5.4 The MMM Diagram; 5.5.5 The g-g Diagram; 6 The Vehicle-Driver Interface; 6.1 Assessment of Vehicle-Driver Performance; The Inter-Beat-Interval; The Heart Rate Variability; Pupil Diameter and Endogenous Eye Blinks; Blood Pressure Variability; Skin Conduction Response; Facial Muscle Activity; 6.2 The Vehicle-Driver Interface, A System Approach; 6.2.1 Open-Loop and Closed-Loop Vehicle Behavior; 6.2.2 The McRuer Crossover Model; 6.3 Vehicle-Driver Longitudinal Performance; 6.3.1 Following a Single Vehicle; 6.3.2 Driver Model and Driver State Identification…”
Libro electrónico -
1042por Lanier, LeeTabla de Contenidos: “…Using Autodesk Maya with the Maya Software Renderer -- Switching to the V-Ray Renderer and Adding Fog -- Case Study 3: Lighting an Animated Animal Character -- Using Autodesk Maya with the Maya Software Renderer -- Switching to the Arnold Renderer and Adding a Sky Shader -- Sidebar: Creating Skies in 3D -- Epilogue: The Future of 3D Lighting -- Appendix: Visual Lighting Glossary -- 0-Point Lighting -- 1-Point Lighting -- 2-Point Lighting -- 3-Point Lighting -- Ambient Light -- Area Light -- Back Light -- Background Light -- Bounced Light -- Color Bleed -- Color Temperature -- Butterfly Lighting -- Depth Map Shadow -- Diffuse -- Directional Light -- Environment Light -- Eye Light -- Fill Light -- Final Gather (GI) -- Fresnel Reflection -- Glamour Lighting -- Hair Light -- Hard Lighting -- High-key -- IBL (Image-based Lighting) -- Key Light -- Kicker (Light) -- Lighting Ratio -- Light Ray -- Loop Lighting -- Low-key -- Mesh Light -- Naturalistic Lighting -- Path Tracing (GI) -- PBR (Physically-Based Rendering) -- Photometric Light -- Photon -- Photon Mapping (GI) -- Point Light -- Radiosity (GI) -- Ray Tracing -- Ray Trace Shadow -- Refraction -- Rembrandt Lighting -- Renderer -- Rim Light -- Shader (Material) -- Secondary Diffuse Illumination -- Silhouette Lighting -- Sky System -- Soft Lighting -- Specularity -- Split Lighting -- Spot Light -- Stylistic Lighting -- Utility Light -- Volume Light -- Appendix: Common Question Index -- Index…”
Publicado 2018
Libro electrónico -
1043Publicado 2019Tabla de Contenidos: “…; 3.1 Introduction; 3.2 Starting a Project; 3.3 Audio in Live; 3.3.1 Importing Audio; 3.3.2 Recording Audio; 3.4 MIDI in Live; 3.4.1 Importing MIDI; 3.4.2 Recording MIDI; 3.5 Essential Operations and Tasks; 3.5.1 Looping Your Loops; 3.5.2 Adding Effects; 3.6 Performance to Arrangement; 3.7 Finishing Your Work; 3.7.1 Exporting Your Audio; 3.7.2 Set versus Project…”
Libro electrónico -
1044por Oakley, AndyTabla de Contenidos: “…Do Repetitive Work with Loops3.5.2. What Just Happened?; 3.5.2.2. The while loop; 3.5.2.3. …”
Publicado 2006
Libro electrónico -
1045Publicado 2017Tabla de Contenidos: “…-- Basic Arduino Troubleshooting -- Anatomy of an Arduino Sketch -- Key Sketch Elements -- The setup() Function -- The loop() Function -- Your First Piece of Hardware -- Going Further -- Hack -- Modify -- Saving Your Sketch -- Project 2: A Stoplight for Your House -- Materials to Gather -- Electronic Parts -- Other Materials and Tools -- New Component: The Resistor -- Build the Stoplight Prototype -- Connect the Red LED to the Breadboard -- Add Power to the Breadboard -- Add the Yellow and Green LEDs -- Program the Stoplight -- Confirm Your IDE Settings -- Create Placeholders for Pin Numbers -- Write the setup() Function -- Write the loop() Function -- Upload the Sketch -- Make the Stoplight Portable…”
Libro electrónico -
1046Publicado 2017Tabla de Contenidos: “…Linear Identification of Closed-Loop Systems -- 2.1. Overview of system identification -- 2.2. …”
Libro electrónico -
1047Publicado 2021Tabla de Contenidos: “…Summary -- Pop quiz - variables and methods -- Chapter 4: Control Flow and Collection Types -- Selection statements -- The if-else statement -- Using the NOT operator -- Nesting statements -- Evaluating multiple conditions -- The switch statement -- Pattern matching -- Fall-through cases -- Pop quiz 1 - if, and, or but -- Collections at a glance -- Arrays -- Indexing and subscripts -- Range exceptions -- Lists -- Accessing and modifying lists -- Dictionaries -- Working with dictionary pairs -- Pop quiz 2 - all about collections -- Iteration statements -- for loops -- foreach loops -- Looping through key-value pairs -- while loops -- To infinity and beyond -- Summary -- Chapter 5: Working with Classes, Structs, and OOP -- Introducing OOP -- Defining classes -- Instantiating class objects -- Adding class fields -- Using constructors -- Declaring class methods -- Declaring structs -- Understanding reference and value types -- Reference types -- Value types -- Integrating the object-oriented mindset -- Encapsulation -- Inheritance -- Base constructors -- Composition -- Polymorphism -- Applying OOP in Unity -- Objects are a class act -- Accessing components -- Accessing components in code -- Drag and drop -- Summary -- Pop quiz - all things OOP -- Chapter 6: Getting Your Hands Dirty with Unity -- A game design primer -- Game design documents -- The Hero Born one-page -- Building a level -- Creating primitives -- Thinking in 3D -- Materials -- White-boxing -- Editor tools -- Hero's trial - putting up drywall -- Keeping the hierarchy clean -- Working with Prefabs -- Lighting basics -- Creating lights -- Light component properties -- Animating in Unity -- Creating animations in code -- Creating animations in the Unity Animation window -- Recording keyframes -- Curves and tangents -- Summary -- Pop quiz - basic Unity features…”
Libro electrónico -
1048Publicado 2017Tabla de Contenidos: “…Cover -- Copyright -- Credits -- About the Authors -- www.PacktPub.com -- Customer Feedback -- Table of Contents -- Preface -- Chapter 1: Getting started -- Obtaining and installing Python 3 -- Windows -- macOS -- Linux -- Starting Python command line REPL -- Leaving the REPL -- Windows -- Unix -- Code structure and significant indentation -- Python culture -- Importing standard library modules -- Getting help() -- Counting fruit with math.factorial() -- Different types of numbers -- Scalar data types: integers, floats, None and bool -- int -- float -- Special floating point values -- Promotion to float -- None -- bool -- Relational operators -- Rich comparison operators -- Control flow: if-statements and while-loops -- Conditional control flow: The if-statement -- if...else -- if...elif...else -- Conditional repetition: the while-loop -- Exiting loops with break -- Summary -- Chapter 2: Strings and Collections -- str - an immutable sequence of Unicode code points -- String quoting styles -- Moment of zen -- Concatenation of adjacent strings -- Multiline strings and newlines -- Raw strings -- The str constructor -- Strings as sequences -- String methods -- Strings with Unicode -- The bytes type - an immutable sequence of bytes -- Literal bytes -- Converting between bytes and str -- list - a sequence of objects -- The dict type - associating keys with values -- The For-loops - iterating over series of items -- Putting it all together -- Summary -- Chapter 3: Modularity -- Organizing code in a .py file -- Running Python programs from the operating system shell -- Importing modules into the REPL -- Defining functions -- Organizing our module into functions -- The __name__ type and executing modules from the command line -- The Python execution model -- The difference between modules, scripts, and programs…”
Libro electrónico -
1049por Kamthane, AshokTabla de Contenidos: “…-- 6.3 The for Loop -- 6.4 Nested for Loops -- 6.5 The while Loop -- 6.6 The do-while Loop -- 6.7 The do-while Statement with while Loop -- 6.8 More Programs -- Summary -- Exercises -- Chapter 7 : Functions in C++ -- 7.1 Introduction -- 7.2 Parts of a Function -- 7.2.1 Function Prototype Declaration -- 7.2.2 Function Call -- 7.2.3 Function Definition…”
Publicado 2012
Libro electrónico -
1050Publicado 2023Tabla de Contenidos: “…About the Editor vii -- Nonlinear Systems: Dynamics, Control, Optimization and Applications to the Science and Engineering 1 -- Eliminating Stick-Slip Vibrations in Drill-Strings with a Dual-Loop Control Strategy Optimised by the CRO-SL Algorithm 3 -- Global Stability of Delayed Ecosystem via Impulsive Differential Inequality and Minimax Principle 19 -- Improved Rotor Flux and Torque Control Based on the Third-Order Sliding Mode Scheme Applied to the Asynchronous Generator for the Single-Rotor Wind Turbine 31 -- Finite-Time Passivity Analysis of Neutral-Type Neural Networks with Mixed Time-Varying Delays 47 -- Research on Intellectualized Location of Coal Gangue Logistics Nodes Based on Particle Swarm Optimization and Quasi-Newton Algorithm 73 -- Symbolic Regulator Sets for a Weakly Nonlinear Discrete Control System with a Small Step 91 -- Operator Methods of the Maximum Principle in Problems of Optimization of Quantum Systems 105 -- Uniform Persistence and Global Attractivity in a Delayed Virus Dynamic Model withApoptosis and Both Virus-to-Cell and Cell-to-Cell Infections 119 -- Adaptive Evolutionary Computation for Nonlinear Hammerstein Control Autoregressive Systems with Key Term Separation Principle 135 -- Stability of Impulsive Stochastic Delay Systems with Markovian Switched Delay Effects 155 -- Neural Adaptive Fixed-Time Attitude Stabilization and Vibration Suppression of Flexible Spacecraft 167 -- Optimal Timing Fault Tolerant Control for Switched Stochastic Systems with Switched Drift Fault 185 -- Synchronization of Epidemic Systems with Neumann Boundary Value under Delayed Impulse 201 -- Analysis of Equilibrium Points in Quantized Hill System 211.…”
Libro electrónico -
1051Publicado 2018Tabla de Contenidos: “…Cover -- Title -- Copyright -- Contents -- Introduction -- Chapter 1 One of my heroes -- Chapter 2 Responsibility -- 2.1 Find stakeholders -- 2.2 Take responsibility -- 2.3 Be accountable: transparency -- Chapter 3 Competent professionals -- Chapter 4 Emotional intelligence -- 4.1 Respect values of yourself and others -- 4.2 Facts, assumptions, and opinions -- 4.3 Cooperation -- Chapter 5 Sustainably competent professionals -- Chapter 6 Systems orientation -- 6.1 Parts and wholes -- 6.2 Sources of vigor against weaving faults -- 6.3 In the chain, in the loop -- Chapter 7 Levels of competence -- Chapter 8 Future orientation -- 8.1 Short- and long-term -- 8.2 Not just linear -- 8.3 Innovative, creative, out of the box -- Chapter 9 The toolbox of the professional -- Chapter 10 Involvement -- 10.1 Sustainable attitude -- 10.2 Passions, dreams, and ideals -- 10.3 Conscience -- Chapter 11 Every profession has its own competences -- The manager -- The financial advisor -- The artist -- The environmental manager -- The product designer -- The organic farmer -- The social worker -- The researcher -- The teacher -- Chapter 12 Action skills -- 12.1 Weigh up the unweighable -- 12.2 Deal with uncertainties -- 12.3 Action without action -- Chapter 13 All the competences of the rainbow -- Chapter 14 Application of RESFIA+D in real life -- 14.1 Specifying the levels -- 14.2 Individual professionals: personal development plan -- 14.3 Organizations: Human Resource Development (HRD) -- 14.4 Universities & -- colleges: curriculum development -- 14.5 And now some action: the self-test -- 14.6 The pledge -- References and weblinks -- Glossary -- About the authors -- Acknowledgments -- Index…”
Libro electrónico -
1052Publicado 2023“…The book starts with downloading the environment and creating a simple project, one that uses different oscillators, Phase Lock Loop, and circuitry needed to create the different system clocks—an easy entry point to this exciting environment. …”
Libro electrónico -
1053Publicado 2008Tabla de Contenidos: “…Murray -- Develop your options -- The rising costs of offering valueless propositions in a connected world / Sen Meehan and Willem Smit -- Managing the evolving global production network / Kasra Ferdows -- From lines to loops: an iterative approach to strategy / Donald Sull -- Opening up strategic space through discontinuous innovation / John Bessant -- How to create the industries of the twenty first century / Costas Markides -- Lead the change -- Leading in the knowledge economy / Rob Goffee and Gareth Jones -- The leaders prison / Robert Galavan and John Cullen -- Nurturing innovation hot spots / Lynda Gratton -- The contrasting faces of the chairman of the board / Nada K. …”
Biblioteca de la Universidad Pontificia de Salamanca (Otras Fuentes: Universidad Loyola - Universidad Loyola Granada, Biblioteca Universitat Ramon Llull)Acceso con credenciales UPSA
Libro electrónico -
1054Publicado 2017Tabla de Contenidos: “…-- Bonus Contents -- Part I OCA -- Chapter 1 Java Basics -- Chapter 2 Working with Java Data Types -- Chapter 3 Using Operators and Decision Constructs -- Chapter 4 Creating and Using Arrays -- Chapter 5 Using Loop Constructs -- Chapter 6 Working with Methods and Encapsulation -- Chapter 7 Working with Inheritance -- Chapter 8 Handling Exceptions -- Chapter 9 Working with Selected Classes from the Java API -- Chapter 10 OCA Practice Exam -- Part II OCP -- Chapter 11 Java Class Design -- Chapter 12 Advanced Java Class Design -- Chapter 13 Generics and Collections -- Chapter 14 Lambda Built-in Functional Interfaces -- Chapter 15 Java Stream API -- Chapter 16 Exceptions and Assertions -- Chapter 17 Use Java SE 8 Date/Time API -- Chapter 18 Java I/O Fundamentals -- Chapter 19 Java File I/O (NIO.2) -- Chapter 20 Java Concurrency -- Chapter 21 Building Database Applications with JDBC -- Chapter 22 Localization -- Chapter 23 OCP Practice Exam -- Appendix Answers to Review Questions -- Index -- Advert -- EULA…”
Libro electrónico -
1055por Hetland, Magnus Lie. authorTabla de Contenidos: “…Ch. 1 Instant hacking : the basics -- Ch. 2 Lists and tuples -- Ch. 3 Working with strings -- Ch. 4 Dictionaries : when indices won't do -- Ch. 5 Conditionals, loops, and some other statements -- Ch. 6 Abstraction -- Ch. 7 More abstraction -- Ch. 8 Exceptions -- Ch. 9 Magic methods, properties, and iterators -- Ch. 10 Batteries included -- Ch. 11 Files and stuff -- Ch. 12 Graphical user interfaces -- Ch. 13 Database support -- Ch. 14 Network programming -- Ch. 15 Python and the Web -- Ch. 16 Testing, 1-2-3 -- Ch. 17 Extending Python -- Ch. 18 Packaging your programs -- Ch. 19 Playful programming -- Ch. 20 Project 1 : instant markup -- Ch. 21 Project 2 : painting a pretty picture -- Ch. 22 Project 3 : XML for all occasions -- Ch. 23 Project 4 : in the news -- Ch. 24 Project 5 : a virtual tea party -- Ch. 25 Project 6 : remote editing with CGI -- Ch. 26 Project 7 : your own bulletin board -- Ch. 27 Project 8 : file sharing with XML-RPC -- Ch. 28 Project 9 : file sharing II - now with GUI! …”
Publicado 2017
Libro electrónico -
1056Publicado 2020Tabla de Contenidos: “…Lalueza -- 7 Data Representation and Reasoning / Maria Maleshkova and Nicolas Seydoux -- 8 Crowdsourcing and Human-in-the-Loop for IoT / Luis-Daniel Ibáñez, Neal Reeves, and Elena Simperl -- 9 IoT Security: Experience is an Expensive Teacher / Paul Kearney -- 10 IoT Data Privacy / Norihiro Okui, Vanessa Bracamonte, Shinsaku Kiyomoto, and Alistair Duke -- 11 Blockchain: Enabling Trust on the Internet of Things / Giampaolo Fiorentino, Carmelita Occhipinti, Antonello Corsi, Evandro Moro, John Davies, and Alistair Duke -- 12 Healthcare / Duarte Gonçalves-Ferreira, Joana Ferreira, Bruno Oliveira, Ricardo Cruz-Correia, and Pedro Pereira Rodrigues -- 13 Smart Energy / Artemis Voulkidis, Theodore Zahariadis, Konstantinos Kalaboukas, Francesca Santori, and Matev#x9E; Vučnik -- 14 Road Transport and Air Quality / Charles Carter and Chris Rushton -- 15 Conclusion / John Davies and Carolina Fortuna -- References -- Index…”
Libro electrónico -
1057Publicado 2009Tabla de Contenidos: “…: Ideology, Representation, Economy -- The Work of Sacrifice in the Age of Mechanical Reproduction: Bride Dolls and Ritual Appropriation at Yasukuni Shrine -- Part IV: Literary Fascism -- Fascist Aesthetics and the Politics of Representation in Kawabata Yasunari -- Disciplining the Erotic-Grotesque in Edogawa Ranpo's Demon of the Lonely Isle -- Hamaosociality: Narrative and Fascism in Hamao Shirō's The Devil's Disciple -- Literary Tropes, Rhetorical Looping, and the Nine Gods of War: "Fascist Proclivities" Made Real -- Part V: Concluding Essay -- The Spanish Perspective: Romancero Marroquí and the Francoist Kitsch Politics of Time -- Contributors -- Index…”
Libro electrónico -
1058por Garzón Jarrin, Rafael AlfonsoTabla de Contenidos: “…ESTRUCTURA DE LA REGIÓN D-LOOP (...) -- FIGURA 4. VARIABLES DEL CUERPO CONSIDERADAS (...) -- FIGURA 5. …”
Publicado 2017
Libro electrónico -
1059por Flanagan, DavidTabla de Contenidos: “…Introduction -- A Tour of Ruby -- Try Ruby -- About This Book -- A Sudoku Solver in Ruby -- The Structure and Execution of Ruby Programs -- Lexical Structure -- Syntactic Structure -- File Structure -- Program Encoding -- Program Execution -- Datatypes and Objects -- Numbers -- Text -- Arrays -- Hashes -- Ranges -- Symbols -- True, False, and Nil -- Objects -- Expressions and Operators -- Literals and Keyword Literals -- Variable References -- Constant References -- Method Invocations -- Assignments -- Operators -- Statements and Control Structures -- Conditionals -- Loops -- Iterators and Enumerable Objects -- Blocks -- Altering Control Flow -- Exceptions and Exception Handling -- BEGIN and END -- Threads, Fibers, and Continuations -- Methods, Procs, Lambdas, and Closures -- Defining Simple Methods -- Method Names -- Methods and Parentheses -- Method Arguments -- Procs and Lambdas -- Closures -- Method Objects -- Functional Programming -- Classes and Modules -- Defining a Simple Class -- Method Visibility: Public, Protected, Private -- Subclassing and Inheritance -- Object Creation and Initialization -- Modules -- Loading and Requiring Modules -- Singleton Methods and the Eigenclass -- Method Lookup -- Constant Lookup -- Reflection and Metaprogramming -- Types, Classes, and Modules -- Evaluating Strings and Blocks -- Variables and Constants -- Methods -- Hooks -- Tracing -- ObjectSpace and GC -- Custom Control Structures -- Missing Methods and Missing Constants -- Dynamically Creating Methods -- Alias Chaining -- Domain-Specific Languages -- The Ruby Platform -- Strings -- Regular Expressions -- Numbers and Math -- Dates and Times -- Collections -- Files and Directories -- Input/Output -- Networking -- Threads and Concurrency -- The Ruby Environment -- Invoking the Ruby Interpreter -- The Top-Level Environment -- Practical Extraction and Reporting Shortcuts -- Calling the OS -- Security…”
Publicado 2008
Libro electrónico -
1060Publicado 2021Tabla de Contenidos: “…Chapter 1: Introduction -- Chapter 2: The Truth About Computers -- Part I: Assembly Language Basics -- Chapter 3: Your First Program -- Chapter 4: Registers and Simple Arithmetic -- Chapter 5: Comparison, Branching and Looping -- Chapter 6: Working with Data in Memory -- Chapter 7: Data Records -- Chapter 8: Signed Numbers and Bitwise Operations -- Chapter 9: More Instructions You Should Know -- Part II: Operating System Basics -- Chapter 10: Making System Calls -- Chapter 11: The Stack and Function Calls -- Chapter 12: Calling Functions from Libraries -- Chapter 13: Common and Useful Assembler Directives -- Chapter 14: Dynamic Memory Allocation -- Chapter 15: Dynamic Linking -- Part III: Programming Language Topics -- Chapter 16: Basic Language Features Represented in Assembly Language -- Chapter 17: Tracking Memory Allocations -- Chapter 18: Object-Oriented Programming -- Chapter 19: Conclusion and Acknowledgments -- Part IV: Appendices -- Appendix A: Getting Set Up with Docker -- Appendix B: The Command Line -- Appendix C: Debugging with GDB -- Appendix D: Nasm (Intel) Assembly Language Syntax -- Appendix E: Common x86-64 Instructions -- Appendix F: Floating Point Numbers -- Appendix G: The Starting State of the Stack -- Appendix H: ASCII, Unicode, and UTF-8 -- Appendix I: Optimization -- Appendix J: A Simplified Garbage Collector -- Appendix K: Going to an Even Lower Level…”
Libro electrónico