Practical Biomedical Signal Analysis Using MATLAB®
eBook - ePub

Practical Biomedical Signal Analysis Using MATLAB®

Katarzyna J. Blinowska, Jarosław Żygierewicz

  1. 354 Seiten
  2. English
  3. ePUB (handyfreundlich)
  4. Über iOS und Android verfügbar
eBook - ePub

Practical Biomedical Signal Analysis Using MATLAB®

Katarzyna J. Blinowska, Jarosław Żygierewicz

Angaben zum Buch
Buchvorschau
Inhaltsverzeichnis
Quellenangaben

Über dieses Buch

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.

Häufig gestellte Fragen

Wie kann ich mein Abo kündigen?
Gehe einfach zum Kontobereich in den Einstellungen und klicke auf „Abo kündigen“ – ganz einfach. Nachdem du gekündigt hast, bleibt deine Mitgliedschaft für den verbleibenden Abozeitraum, den du bereits bezahlt hast, aktiv. Mehr Informationen hier.
(Wie) Kann ich Bücher herunterladen?
Derzeit stehen all unsere auf Mobilgeräte reagierenden ePub-Bücher zum Download über die App zur Verfügung. Die meisten unserer PDFs stehen ebenfalls zum Download bereit; wir arbeiten daran, auch die übrigen PDFs zum Download anzubieten, bei denen dies aktuell noch nicht möglich ist. Weitere Informationen hier.
Welcher Unterschied besteht bei den Preisen zwischen den Aboplänen?
Mit beiden Aboplänen erhältst du vollen Zugang zur Bibliothek und allen Funktionen von Perlego. Die einzigen Unterschiede bestehen im Preis und dem Abozeitraum: Mit dem Jahresabo sparst du auf 12 Monate gerechnet im Vergleich zum Monatsabo rund 30 %.
Was ist Perlego?
Wir sind ein Online-Abodienst für Lehrbücher, bei dem du für weniger als den Preis eines einzelnen Buches pro Monat Zugang zu einer ganzen Online-Bibliothek erhältst. Mit über 1 Million Büchern zu über 1.000 verschiedenen Themen haben wir bestimmt alles, was du brauchst! Weitere Informationen hier.
Unterstützt Perlego Text-zu-Sprache?
Achte auf das Symbol zum Vorlesen in deinem nächsten Buch, um zu sehen, ob du es dir auch anhören kannst. Bei diesem Tool wird dir Text laut vorgelesen, wobei der Text beim Vorlesen auch grafisch hervorgehoben wird. Du kannst das Vorlesen jederzeit anhalten, beschleunigen und verlangsamen. Weitere Informationen hier.
Ist Practical Biomedical Signal Analysis Using MATLAB® als Online-PDF/ePub verfügbar?
Ja, du hast Zugang zu Practical Biomedical Signal Analysis Using MATLAB® von Katarzyna J. Blinowska, Jarosław Żygierewicz im PDF- und/oder ePub-Format sowie zu anderen beliebten Büchern aus Médecine & Biotechnologie en médecine. Aus unserem Katalog stehen dir über 1 Million Bücher zur Verfügung.

Information

Verlag
CRC Press
Jahr
2021
ISBN
9780429775727

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...

Inhaltsverzeichnis

  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
Zitierstile für 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.