Practical Biomedical Signal Analysis Using MATLAB®
eBook - ePub

Practical Biomedical Signal Analysis Using MATLAB®

Katarzyna J. Blinowska, Jarosław Żygierewicz

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

Practical Biomedical Signal Analysis Using MATLAB®

Katarzyna J. Blinowska, Jarosław Żygierewicz

Detalles del libro
Vista previa del libro
Índice
Citas

Información del libro

Covering the latest cutting-edge techniques in biomedical signal processing while presenting a coherent treatment of various signal processing methods and applications, this second edition of Practical Biomedical Signal Analysis Using MATLAB ® also offers practical guidance on which procedures are appropriate for a given task and different types of data.

It begins by describing signal analysis techniques—including the newest and most advanced methods in the field—in an easy and accessible way, illustrating them with Live Script demos. MATLAB® routines are listed when available, and freely available software is discussed where appropriate. The book concludes by exploring the applications of the methods to a broad range of biomedical signals while highlighting common problems encountered in practice.

These chapters have been updated throughout and include new sections on multiple channel analysis and connectivity measures, phase-amplitude analysis, functional near-infrared spectroscopy, fMRI (BOLD) signals, wearable devices, multimodal signal analysis, and brain-computer interfaces.

By providing a unified overview of the field, this book explains how to integrate signal processing techniques in biomedical applications properly and explores how to avoid misinterpretations and pitfalls. It helps readers to choose the appropriate method as well as design their own methods. It will be an excellent guide for graduate students studying biomedical engineering and practicing researchers in the field of biomedical signal analysis.

Features:



  • Fully updated throughout with new achievements, technologies, and methods and is supported with over 40 original MATLAB Live Scripts illustrating the discussed techniques, suitable for self-learning or as a supplement to college courses


  • Provides a practical comparison of the advantages and disadvantages of different approaches in the context of various applications


  • Applies the methods to a variety of signals, including electric, magnetic, acoustic, and optical

Katarzyna J. Blinowska is a Professor emeritus at the University of Warsaw, Poland, where she was director of Graduate Studies in Biomedical Physics and head of the Department of Biomedical Physics. Currently, she is employed at the Institute of Biocybernetics and Biomedical Engineering of the Polish Academy of Sciences. She has been at the forefront in developing new advanced time-series methods for research and clinical applications.

Jaros?aw ?ygierewicz is a Professor at the University of Warsaw, Poland. His research focuses on developing methods for analyzing EEG and MEG signals, brain-computer interfaces, and applications of machine learning in signal processing and classification.

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 Practical Biomedical Signal Analysis Using MATLAB® un PDF/ePUB en línea?
Sí, puedes acceder a Practical Biomedical Signal Analysis Using MATLAB® de Katarzyna J. Blinowska, Jarosław Żygierewicz en formato PDF o ePUB, así como a otros libros populares de Médecine y Biotechnologie en médecine. Tenemos más de un millón de libros disponibles en nuestro catálogo para que explores.

Información

Editorial
CRC Press
Año
2021
ISBN
9780429775727
Edición
2
Categoría
Médecine

1A Short Introduction to MATLAB®

DOI: 10.1201/9780429431357-1

1.1 Introduction

MATLAB® is a commercial platform offered by The MathWorks, Inc., the USA which delivers a high-level, matrix-based language and an integrated development environment. Together with specialized libraries, so-called toolboxes, it is a very efficient system for fast prototyping, and complex scientific and engineering computations. What is also very important many algorithms used in biomedical signal processing were implemented and published as MATLAB functions or toolboxes. In the following sections, we shortly present basic syntax and concepts, needed for the understanding of the examples given in the book and in accompanying Live Script demos. This may be helpful for a novice MATLAB user. A deeper knowledge of MATLAB can be obtained from many MATLAB books and the very useful build-in documentation system of MATLAB.

1.2 Where Is Help?

The documentation can be accessed by the GUI, or from the command prompt. In the latter case just type doc (this opens the graphical documentation window) or help (if you prefer a more compact textual help). The general set of commands can be displayed by issuing doc matlab/general.

1.3 Vectors and Matrixes

In signal processing, it is very convenient to implement the signals as vectors or matrixes. The most basic type of variable in MATLAB is a matrix. In fact, a scalar value is represented as 1×1 matrix. So vectors are N×1 (a column vector) or 1×N (a row vector).
The matrixes can be entered either from command line/editor (type and execute the examples in the command line, and look into the workspace window):
A=[1 2 3 4; 5 6 7 8; 8 9 1 2];
disp(A)
or produced by a function:
B=rand(3,3);
disp(B)
or, in practical cases most often, loaded from a file (this we will show later in Sect. 1.8).
Note the semicolon at the end of each line—it prevents MATLAB from displaying its result in the command window. A semicolon inside the matrix forming command finishes a given row and starts another one.

1.4 Matrix Operations

1.4.1 Algebraic Operations

In an intuitive way we can do the matrix algebraic operations:
B = [1 2;3 4];
disp(B)
C = B + B;
disp(C)
D = C - 2* B;
disp(D)
M = B/B;
disp(M)
An operator preceded by a dot evaluates the operation element-wise. Please, compare results of:
G = B*B;
disp(G)
H = B.*B;
disp(H)
There is a set of matrix operators. The basic ones are:
  • transpose: B_tr = B';
  • determinant: d = det(B);
  • trace: d = trace(B);
  • diagonal: di = diag(B);
  • inverse: B_inv = B(̂-1);
  • sum: s = sum(B); this sums by default along the first dimension, other direction can be indicated in the function call e.g., s = sum(B,2);

1.4.2 Matrix Indexing

Matrix addressing starts from 1. We get an element of a matrix like this:
B = [1 2;3 4];
disp(B)
1 2
3 4
>> B(1,2)
ans =
2
We assign its value in this way:
>> B(1,2) = 4;
>> B
B =
1 4
3 4
Note, that when you modify matrix elements, the matrix size adjusts automatically and it can create elements that were not directly assigned, setting them to 0. Note the element B(2,3) in the example below:
>> B(1,3) = 4;
>> B
B =
1 4 4
3 4 0
Range control is done only when retrieving matrix element...

Índice

  1. Cover Page
  2. Half-Title Page
  3. Series Page
  4. Title Page
  5. Copyright Page
  6. Contents
  7. About the Series
  8. Preface
  9. List of Abbreviations
  10. 1 A Short Introduction to MATLAB®
  11. 2 Introductory Concepts
  12. 3 Single Channel (Univariate) Signal
  13. 4 Multiple Channels (Multivariate) Signals
  14. 5 Application to Biomedical Signals
  15. Bibliography
  16. Index
Estilos de citas para Practical Biomedical Signal Analysis Using MATLAB®

APA 6 Citation

Blinowska, K., & Żygierewicz, J. (2021). Practical Biomedical Signal Analysis Using MATLAB® (2nd ed.). CRC Press. Retrieved from https://www.perlego.com/book/2995512/practical-biomedical-signal-analysis-using-matlab-pdf (Original work published 2021)

Chicago Citation

Blinowska, Katarzyna, and Jarosław Żygierewicz. (2021) 2021. Practical Biomedical Signal Analysis Using MATLAB®. 2nd ed. CRC Press. https://www.perlego.com/book/2995512/practical-biomedical-signal-analysis-using-matlab-pdf.

Harvard Citation

Blinowska, K. and Żygierewicz, J. (2021) Practical Biomedical Signal Analysis Using MATLAB®. 2nd edn. CRC Press. Available at: https://www.perlego.com/book/2995512/practical-biomedical-signal-analysis-using-matlab-pdf (Accessed: 15 October 2022).

MLA 7 Citation

Blinowska, Katarzyna, and Jarosław Żygierewicz. Practical Biomedical Signal Analysis Using MATLAB®. 2nd ed. CRC Press, 2021. Web. 15 Oct. 2022.