Programación
Este libro es una guía de aprendizaje del lenguaje de programación Fortran90 para estudiantes de las carreras químicas.
Procesamiento de Lenguaje Natural
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.
Procesamiento de la semántica de las palabras utilizando Hownet.
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.
Programación en Lenguaje python utilizando problemas matemáticos y de las ciencias naturales.
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.
Programación en lenguaje python.
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.
Guía definitiva de la plataforma NetBeans en su versión 7. Un recorrido por las principales características de la plataforma.
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.
Programming
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 para programación científica
- 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.
Programacion en Haskell
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.
Programación en Haskell
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.
Programación en Haskell
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.
Programación para ORACLE
Programacion en PL / SQL para Oracle. Esta es una forma de crear excelentes programas para usar con este conocido grstor de bases de datos.
Programación en el lenguaje C.
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.
Programación en el lenguaje C.
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.
Programación en C en sistemas compatibles con el estándar POSIX.
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.
Programacion para Android
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.
Programacion web usando GWT
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
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.
Usted puede contribuir con Libros UCLV, es importante para nosotros su aporte..
Contribuir