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 (adapté aux mobiles)
  4. Disponible sur iOS et Android
eBook - ePub

Practical Biomedical Signal Analysis Using MATLABÂź

Katarzyna J. Blinowska, JarosƂaw Ć»ygierewicz

DĂ©tails du livre
Aperçu du livre
Table des matiĂšres
Citations

À propos de ce livre

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.

Foire aux questions

Comment puis-je résilier mon abonnement ?
Il vous suffit de vous rendre dans la section compte dans paramĂštres et de cliquer sur « RĂ©silier l’abonnement ». C’est aussi simple que cela ! Une fois que vous aurez rĂ©siliĂ© votre abonnement, il restera actif pour le reste de la pĂ©riode pour laquelle vous avez payĂ©. DĂ©couvrez-en plus ici.
Puis-je / comment puis-je télécharger des livres ?
Pour le moment, tous nos livres en format ePub adaptĂ©s aux mobiles peuvent ĂȘtre tĂ©lĂ©chargĂ©s via l’application. La plupart de nos PDF sont Ă©galement disponibles en tĂ©lĂ©chargement et les autres seront tĂ©lĂ©chargeables trĂšs prochainement. DĂ©couvrez-en plus ici.
Quelle est la différence entre les formules tarifaires ?
Les deux abonnements vous donnent un accĂšs complet Ă  la bibliothĂšque et Ă  toutes les fonctionnalitĂ©s de Perlego. Les seules diffĂ©rences sont les tarifs ainsi que la pĂ©riode d’abonnement : avec l’abonnement annuel, vous Ă©conomiserez environ 30 % par rapport Ă  12 mois d’abonnement mensuel.
Qu’est-ce que Perlego ?
Nous sommes un service d’abonnement Ă  des ouvrages universitaires en ligne, oĂč vous pouvez accĂ©der Ă  toute une bibliothĂšque pour un prix infĂ©rieur Ă  celui d’un seul livre par mois. Avec plus d’un million de livres sur plus de 1 000 sujets, nous avons ce qu’il vous faut ! DĂ©couvrez-en plus ici.
Prenez-vous en charge la synthÚse vocale ?
Recherchez le symbole Écouter sur votre prochain livre pour voir si vous pouvez l’écouter. L’outil Écouter lit le texte Ă  haute voix pour vous, en surlignant le passage qui est en cours de lecture. Vous pouvez le mettre sur pause, l’accĂ©lĂ©rer ou le ralentir. DĂ©couvrez-en plus ici.
Est-ce que Practical Biomedical Signal Analysis Using MATLABŸ est un PDF/ePUB en ligne ?
Oui, vous pouvez accĂ©der Ă  Practical Biomedical Signal Analysis Using MATLABÂź par Katarzyna J. Blinowska, JarosƂaw Ć»ygierewicz en format PDF et/ou ePUB ainsi qu’à d’autres livres populaires dans MĂ©decine et Biotechnologie en mĂ©decine. Nous disposons de plus d’un million d’ouvrages Ă  dĂ©couvrir dans notre catalogue.

Informations

Éditeur
CRC Press
Année
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 des matiĂšres

  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
Normes de citation pour 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.