Practical Biomedical Signal Analysis Using MATLAB®
eBook - ePub

Practical Biomedical Signal Analysis Using MATLAB®

Katarzyna J. Blinowska, Jarosław Żygierewicz

  1. 354 pages
  2. English
  3. ePUB (mobile friendly)
  4. Available on iOS & Android
eBook - ePub

Practical Biomedical Signal Analysis Using MATLAB®

Katarzyna J. Blinowska, Jarosław Żygierewicz

Book details
Book preview
Table of contents
Citations

About This Book

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.

Frequently asked questions

How do I cancel my subscription?
Simply head over to the account section in settings and click on “Cancel Subscription” - it’s as simple as that. After you cancel, your membership will stay active for the remainder of the time you’ve paid for. Learn more here.
Can/how do I download books?
At the moment all of our mobile-responsive ePub books are available to download via the app. Most of our PDFs are also available to download and we're working on making the final remaining ones downloadable now. Learn more here.
What is the difference between the pricing plans?
Both plans give you full access to the library and all of Perlego’s features. The only differences are the price and subscription period: With the annual plan you’ll save around 30% compared to 12 months on the monthly plan.
What is Perlego?
We are an online textbook subscription service, where you can get access to an entire online library for less than the price of a single book per month. With over 1 million books across 1000+ topics, we’ve got you covered! Learn more here.
Do you support text-to-speech?
Look out for the read-aloud symbol on your next book to see if you can listen to it. The read-aloud tool reads text aloud for you, highlighting the text as it is being read. You can pause it, speed it up and slow it down. Learn more here.
Is Practical Biomedical Signal Analysis Using MATLAB® an online PDF/ePUB?
Yes, you can access Practical Biomedical Signal Analysis Using MATLAB® by Katarzyna J. Blinowska, Jarosław Żygierewicz in PDF and/or ePUB format, as well as other popular books in Médecine & Biotechnologie en médecine. We have over one million books available in our catalogue for you to explore.

Information

Publisher
CRC Press
Year
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...

Table of contents

  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
Citation styles for 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.