Libros UCLV { BETA }

Gran cantidad de libros a nuestro alcance

Tenemos :
1413 libros,
262722 descargas y
1106 contribuyentes !

Se han encontrado 75 Coincidencias

Introducción a la programación en Fortran 90 para químicos

Programación


80 Visitas | 96 Descargas | 2013-10-17 19:30:36 | ahuici

Este libro es una guía de aprendizaje del lenguaje de programación Fortran90 para estudiantes de las carreras químicas.

Natural Language Processing with Python

Procesamiento de Lenguaje Natural


138 Visitas | 354 Descargas | 2013-10-17 14:26:46 | abelm

Es un libro de procesamiento de lenguaje natural con python utilizando python-nltk. Los contenidos que trata son: una introducción al procesamiento de textos con python, cómo acceder a corpus y recursos léxicos, procesamiento de textos en formato RAW, nociones para programar de forma estructurada tus proyectos en este tipo de campo científico. Además dedica capítulos por separado a la categorización y el etiquetado, clasificación de textos, extracción de información, análisis de estructura de la oración, análisis semántico de la oración.

Hownet and the Computation of Meaning

Procesamiento de la semántica de las palabras utilizando Hownet.


81 Visitas | 157 Descargas | 2013-11-25 04:49:06 | abelm

Este libro comienza con una introducción a los signficados y formas de representarlos. Puntualiza algunos aspectos históricos de este recurso léxico (Hownet) útil para procesar el idioma inglés y chino. Introduce al lector en los 'sememas' (las unidades más pequeñas del significado). Y posteriormente dedica varios capítulos a la Clasificación Conceptual, Roles Semánticos, Taxonomía, Diccionario de Conocimiento Hownet, Base de Datos de Conocimiento Etiquetado, Análisis de Relaciones en Hownet, Navegar en Hownet, Algoritmos y Software Hownet, ... Se los recomiendo por su valor incalculable para comparar resultados con la BD wordnet.

A Primer on Scientific Programming with Python

Programación en Lenguaje python utilizando problemas matemáticos y de las ciencias naturales.


131 Visitas | 220 Descargas | 2013-11-27 06:24:39 | abelm

El objetivo del libro es enseñar programación en python utilizando problemas de las matemáticas y las ciencias naturales. Utiliza algunos ejemplos de trabajo con ficheros genéticos(ADN). El Cap1 contiene trabajo introductorio con fómulas en el lenguaje python. Cap2 Ciclos y tipo de datos Lista. Cap3 Funciones. Cap4 Trabajo con ficheros y manejo de errores y excepciones. Cap5 Arreglos y Plotting. Cap6 "Clases" de la POO. Cap7 Números aleatorios y su aplicación a juegos sencillos. Cap9. Programación Orientada a Objetos. Contiene 8 apéndices dedicados fundamentalmente a: trabajo con ecuaciones diferenciales, código python en lenguajes compilados, y otros temas tecnológicos.

Think Python

Programación en lenguaje python.


118 Visitas | 197 Descargas | 2013-12-04 06:36:42 | abelm

Un excelente libro para aprender y enseñar a programar en python. Contiene por capítulos todos los temas de la programación orientada a objetos así como un capítulo para cada tipo de datos de este lenguaje. Es la base para el libro Think Complexity del mismo autor.

The Definitive Guide to NetBeans Platform 7


81 Visitas | 126 Descargas | 2014-01-22 16:21:14 | karelr

Guía definitiva de la plataforma NetBeans en su versión 7. Un recorrido por las principales características de la plataforma.

Introduction to Compiler Design


117 Visitas | 228 Descargas | 2014-01-28 19:43:12 | josedanielr

The 1rst chapters of the book describes the methods and tools required to read program text and convert it into a form suitable for computer manipulation. This process is made in two stages: A lexical analysis stage that basically divides the input text into a list of “words”. This is followed by a syntax analysis (or parsing) stage that analyses the way these words form structures and converts the text into a data structure that reflects the textual structure. Lexical analysis is covered in Chap. 1 and syntactical analysis in Chap. 2. The remainder of the book (Chaps. 3–9) covers the middle part and back-end of interpreters and compilers. Chapter 3 covers how definitions and uses of names (identifiers) are connected through symbol tables. Chapter 4 shows how you can implement a simple programming language by writing an interpreter and notes that this gives a considerable overhead that can be reduced by doing more things before executing the program, which leads to the following chapters about static type checking (Chap. 5) and compilation (Chaps. 6–9. In Chap. 6, it is shown how expressions and statements can be compiled into an intermediate language, a language that is close to machine language but hides machine-specific details. In Chap. 7,it is discussed how the intermediate language can be converted into “real” machine code. Doing this well requires that the registers in the processor are used to store thevalues of variables, which is achieved by a register allocation process, as described in Chap. 8. Up to this point, a “program” has been what corresponds to the body of a single procedure. Procedure calls add some issues, which are discussed in Chap. 9. The book uses standard set notation and equations over sets. Appendix contains a short summary of these, which may be helpful to those that need these concepts refreshed.

Learning jQuery Deferreds

Programming


59 Visitas | 93 Descargas | 2014-01-30 05:04:54 | cbustillo

Orchestrating asynchronous function calls in JavaScript often leads to callback hell, but there is a reliable way to avoid this painful state of affairs. With this concise and simple guide, you'll learn how to use jQuery deferreds and promises, an elegant approach for managing asynchronous calls in both client and server applications. This book contains 18 examples that use deferreds to solve progressively challenging real-world programming problems, along with 75 stimulating puzzles (and their solutions) that will help you understand how and when to use deferreds. You'll learn new tricks in a fun way, and become immersed in the practice of event-based programming.

Python Scientific lecture notes

Python para programación científica


72 Visitas | 122 Descargas | 2014-02-26 20:57:48 | alvarojs

- Rich collection of already existing bricks corresponding to classical numerical methods or basic actions: we don’t want to re-program the plotting of a curve, a Fourier transform or a fitting algorithm. Don’t reinvent the wheel! - Easy to learn: computer science is neither our job nor our education. We want to be able to draw a curve, smooth a signal, do a Fourier transform in a few minutes. - Easy communication with collaborators, students, customers, to make the code live within a lab or a company: the code should be as readable as a book. Thus, the language should contain as few syntax symbols or unneeded routines as possible that would divert the reader from the mathematical or scientific understanding of the code. - Efficient code that executes quickly... but needless to say that a very fast code becomes useless if we spend too much time writing it. So, we need both a quick development time and a quick execution time. - A single environment/language for everything, if possible, to avoid learning a new software for each new problem.

Real World Haskell

Programacion en Haskell


32 Visitas | 58 Descargas | 2014-03-03 15:22:57 | alvarojs

Haskell is a deep language; we think learning it is a hugely rewarding experience. We will focus on three elements as we explain why. The first is novelty: we invite you to think about programming from a different and valuable perspective. The second is power: we’ll show you how to create software that is short, fast, and safe. Lastly, we offer you a lot of enjoyment: the pleasure of applying beautiful programming techniques to solve real problems.

Programming in Haskell

Programación en Haskell


41 Visitas | 43 Descargas | 2014-03-03 15:25:13 | alvarojs

Haskell is one of the leading languages for teaching functional programming, enabling students to write simpler and cleaner code, and to learn how to structure and reason about programs. This introduction is ideal for beginners: it requires no previous programming experience and all concepts are explained from first principles with the aid of carefully chosen examples. Each chapter includes a series of exercises, ranging from the straightforward to extended projects, along with suggestions for further reading on more advanced topics. The presentation is clear and simple, and benefits from having been refined and class-tested over several years.

The Haskell Road to Logic, Math and Programming

Programación en Haskell


37 Visitas | 53 Descargas | 2014-03-05 17:15:27 | alvarojs

The subject of this book is the use of logic in practice, more in particular the use of logic in reasoning about programming tasks. Logic is not taught here as a mathematical discipline per se, but as an aid in the understanding and construction of proofs, and as a tool for reasoning about formal objects like numbers, lists, trees, formulas, and so on. As we go along, we will introduce the concepts and tools that form the set-theoretic basis of mathematics, and demonstrate the role of these concepts and tools in implementations. These implementations can be thought of as representations of the mathematical concepts.

Oracle PL/SQL Programming, Sixth Edition

Programación para ORACLE


64 Visitas | 98 Descargas | 2014-05-06 13:21:47 | moliver

Programacion en PL / SQL para Oracle. Esta es una forma de crear excelentes programas para usar con este conocido grstor de bases de datos.

Practical C Programming

Programación en el lenguaje C.


89 Visitas | 119 Descargas | 2014-05-12 17:50:18 | yeiniel

Libro práctico para aprender a programar en el lenguaje C de la editorial O’Reilly. Además de la mecánica de la programación hace énfasis en las buenas prácticas de desarrollo de software.

The C Programming Language

Programación en el lenguaje C.


64 Visitas | 114 Descargas | 2014-05-12 17:55:51 | yeiniel

Este es el libro escrito por los creadores del lenguaje. En su primera edición sirvió como referencia para el lenguaje mismo y es la base del estándar C del año 89.

Advanced Programming in the UNIX Environment

Programación en C en sistemas compatibles con el estándar POSIX.


47 Visitas | 104 Descargas | 2014-05-12 18:09:24 | yeiniel

Ofrece una detallada descripción de las API de los sistemas compatibles con el estándar POSIX.1003 así como ejemplos de uso y aplicaciones.

Curso Programacion Android

Programacion para Android


482 Visitas | 826 Descargas | 2014-05-15 02:25:41 | josedanielr

Con el Curso de Programación en Android de sgoliver.net aprenderás a crear desde cero tus propias aplicaciones para dispositivos móviles con sistema operativo Android. Desde los temas más básicos, como descargar e instalar las herramientas necesarias o crear tu primer proyecto paso a paso, hasta temas avanzados como la localización GPS o la comunicación con servicios web. Este manual va dirigido a todas aquellas personas interesadas en un tema tan en auge como la programación de aplicaciones móviles para la plataforma Android. Se tratarán temas dedicados a la construcción de aplicaciones nativas de la plataforma, dejando a un lado por el momento las aplicaciones web. Es por ello por lo que el único requisito indispensable a la hora de utilizar este manual es tener conocimientos bien asentados sobre el lenguaje de programación Java y ciertas nociones sobre aspectos básicos del desarrollo actual como la orientación a objetos.


Visitas | Descargas | |

Google Web Toolkit Tutorial

Programacion web usando GWT


57 Visitas | 91 Descargas | 2014-06-10 14:10:08 | dgalvez

El libro aborta los elementos fundamentales para desarrollar aplicaciones usando GWT. Comienza con los elementos basicos que deben estar disponibles para poder desarrollar aplicaciones con GWT y luego describe las 4 partes fundamentales (modulos) en que se divide una aplicacion GWT. Finalmente se desarrolla una aplicacion paso a paso y se muestra el proceso de despliegue de la misma. El resto del libro esta relacionada con la programacion para web y el uso de widgets.

jQuery in action, second edition

jQuery


60 Visitas | 475 Descargas | 2015-03-04 15:57:09 | javierd

Do more with less. Stated plainly and simply, that is the purpose of this book: to help you learn how to do more on your web application pages with less script. Your authors, one an avid andenthusiastic user, and the other a jQuery contributor and evangelist, believe that jQuery is the best library available today to help you do just that.