Essential MATLAB for Engineers and Scientists
eBook - ePub

Essential MATLAB for Engineers and Scientists

Daniel T. Valentine, Brian H. Hahn

Compartir libro
  1. 428 páginas
  2. English
  3. ePUB (apto para móviles)
  4. Disponible en iOS y Android
eBook - ePub

Essential MATLAB for Engineers and Scientists

Daniel T. Valentine, Brian H. Hahn

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

Essential MATLAB for Engineers and Scientists, Sixth Edition, provides a concise, balanced overview of MATLAB's functionality that facilitates independent learning, with coverage of both the fundamentals and applications. The essentials of MATLAB are illustrated throughout, featuring complete coverage of the software's windows and menus. Program design and algorithm development are presented clearly and intuitively, along with many examples from a wide range of familiar scientific and engineering areas.

This updated edition includes the latest MATLAB versions through 2016a, and is an ideal book for a first course on MATLAB, or for an engineering problem-solving course using MATLAB, as well as a self-learning tutorial for professionals and students expected to learn and apply MATLAB.

  • Updated to include all the newer features through MATLAB R2016a
  • Includes new chapter on complex variables analysis
  • Presents a comparison of execution time between compiled and un-compiled code that includes examples
  • Describes the new H2 graphics features

Preguntas frecuentes

¿Cómo cancelo mi suscripción?
Simplemente, dirígete a la sección ajustes de la cuenta y haz clic en «Cancelar suscripción». Así de sencillo. Después de cancelar tu suscripción, esta permanecerá activa el tiempo restante que hayas pagado. Obtén más información aquí.
¿Cómo descargo los libros?
Por el momento, todos nuestros libros ePub adaptables a dispositivos móviles se pueden descargar a través de la aplicación. La mayor parte de nuestros PDF también se puede descargar y ya estamos trabajando para que el resto también sea descargable. Obtén más información aquí.
¿En qué se diferencian los planes de precios?
Ambos planes te permiten acceder por completo a la biblioteca y a todas las funciones de Perlego. Las únicas diferencias son el precio y el período de suscripción: con el plan anual ahorrarás en torno a un 30 % en comparación con 12 meses de un plan mensual.
¿Qué es Perlego?
Somos un servicio de suscripción de libros de texto en línea que te permite acceder a toda una biblioteca en línea por menos de lo que cuesta un libro al mes. Con más de un millón de libros sobre más de 1000 categorías, ¡tenemos todo lo que necesitas! Obtén más información aquí.
¿Perlego ofrece la función de texto a voz?
Busca el símbolo de lectura en voz alta en tu próximo libro para ver si puedes escucharlo. La herramienta de lectura en voz alta lee el texto en voz alta por ti, resaltando el texto a medida que se lee. Puedes pausarla, acelerarla y ralentizarla. Obtén más información aquí.
¿Es Essential MATLAB for Engineers and Scientists un PDF/ePUB en línea?
Sí, puedes acceder a Essential MATLAB for Engineers and Scientists de Daniel T. Valentine, Brian H. Hahn en formato PDF o ePUB, así como a otros libros populares de Computer Science y Digital Media. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Año
2016
ISBN
9780128052716
Edición
6
Categoría
Digital Media
Chapter 1

Introduction

Abstract

The objectives of this chapter are to enable you to use some simple MATLAB commands from the Command Window, to examine various MATLAB desktop and editing features, to learn some of the new features of the MATLAB R2016a Desktop, to learn to write scripts in the Editor and Run them from the Editor, and to learn some of the new features associated with the tabs (in particular, the PUBLISH and APPS features). In this chapter you learn that MATLAB is a matrix-based computer system designed to assist in scientific and engineering problem solving. You also learn that one way to use MATLAB is to enter commands and statements on the command line in the Command Window. In this case the commands you enter are carried out immediately. You are also introduced to a number of useful built-in commands and functions.

Keywords

MATLAB R2016a; Elementary commands; Editing and executing commands
The objectives of this chapter are:
■ To enable you to use some simple MATLAB commands from the Command Window.
■ To examine various MATLAB desktop and editing features.
■ To learn some of the new features of the MATLAB R2016a Desktop.
■ To learn to write scripts in the Editor and Run them from the Editor.
■ To learn some of the new features associated with the tabs (in particular, the PUBLISH and APPS features).
MATLAB is a powerful technical computing system for handling scientific and engineering calculations. The name MATLAB stands for Matrix Laboratory, because the system was designed to make matrix computations particularly easy. A matrix is an array of numbers organized in m rows and n columns. An example is the following
Image
array:
Image
Any one of the elements in a matrix can be plucked out by using the row and column indices that identify its location. The elements in this example are plucked out as follows:
Image
,
Image
,
Image
,
Image
,
Image
,
Image
. The first index identifies the row number counted from top to bottom; the second index is the column number counted from left to right. This is the convention used in MATLAB to locate information in an array. A computer is useful because it can do numerous computations quickly, so operating on large numerical data sets listed in tables as arrays or matrices of rows and columns is quite efficient.
This book assumes that you have never used a computer before to do the sort of scientific calculations that MATLAB handles, but are able to find your way around a computer keyboard and know your operating system (e.g., Windows, UNIX or MAC-OS). The only other computer-related skill you will need is some very basic text editing.
One of the many things you will like about MATLAB (and that distinguishes it from many other computer programming systems, such as C++ and Java) is that you can use it interactively. This means you type some commands at the special MATLAB prompt and get results immediately. The problems solved in this way can be very simple, like finding a square root, or very complicated, like finding the solution to a system of differential equations. For many technical problems, you enter only one or two commands—MATLAB does most of the work for you.
There are three essential requirements for successful MATLAB applications:
■ You must learn the exact rules for writing MATLAB statements and using MATLAB utilities.
■ You must know the mathematics associated with the problem you want to solve.
■ You must develop a logical plan of attack—the algorithm—for solving a particular problem.
This chapter is devoted mainly to the first requirement: learning some basic MATLAB rules. Computer programming is a precise science (some would also say an art); you have to enter statements in precisely the right way. There is a saying among computer programmers: Garbage in, garbage out. It means that if you give MATLAB a gar...

Índice