<< Chapter < Page Chapter >> Page >
This module builds the tools necessary for the frequency analysis of brain waves as recording by an electroencephalograph. We proceed from the Pythagorean Theorem to sine waves, the trapezoid rule and finally to Fourier decomposition.

Table of contents

0. Background

1. Sine and Cosine Waves

2. Trapezoid Rule for estimating area

3. Fourier Method for decomposing signals

4. Spectrogram application to analyzing brain waves

Background: brain waves and the eeg

Signals are sent through the brain using both chemical and electrical means. The synchronized electrical activity of individual neurons adds up to something big enough to detect on from outside the head. To measure it, we use a set of electrical nodes called an electroencephalogam (EEG). The measured activity reflects different states of the brain which in turn tell us something about the mindset of the person. Our goal in this module is to decompose an EEG signal into its different frequencies, which is intuitively the most meaningful piece of information.

Sine and cosine waves

Brainwaves have complex shapes that are not easily interpreted. In order to study these waves, we need to develop some mathematical tools that will tell us about different waves. To outline, we begin by talking about pure (sine or cosine) waves, then move to the trapezoid rule for estimating area under a curve. Next, we develop Fourier analysis for picking out the frequencies in a jumbled signal, and finally use these tools to create spectrograms, which allow us to track different frequencies over time.

Sine waves

The sine wave is a mathematical function. It describes many physical phenomena, including sound waves and oscillation. It looks just like a wave. MATLAB uses the sin function to make sin waves. For example, to make Figure 1, we use the code:

>>t = 0:.01:1;>>y = sin(2*pi*t);>>plot(t,y);

The sine wave is defined by the lengths and angles of a triangle. Run sincirc.m (copied below) to see how the sine and cosine values relate to the angle ϕ of the triangle. As you can see, if ϕ is the angle of a right triangle with hypotenuse 1 (illustrated by the circle) , sin ( ϕ ) is the height of the triangle and cos ( ϕ ) is the base of it:

A sin wave

An envelope with a blue page

The relation of sine and cosine to a triangle and unit circle

An envelope with a white page
Two illustrations of the sine function.
% sincirc.m %% sincirc.m illustrates the relation of the sin and cosine waves to the circle. %define parametersNturns = 2; steps_per_turn = 9;step_inc = 2*pi/steps_per_turn; %set up points for circlecirc_x = cos(0:.01:2*pi); circ_y = sin(0:.01:2*pi);axis equal %loop over triangles with different anglesfor n = 1:Nturns * steps_per_turn; phi = n * step_inc + pi/4;%plot circle, then triangle, then text plot(circ_x, circ_y);axis([-1 1 -1 1] * 1.5);line([0 cos(phi)], [0 sin(phi)]); line([1 1]* cos(phi), [0 sin(phi)]);line([0 cos(phi)], [0 0]); text(cos(phi)/2 , -.1*sign(sin(phi)),'cos(\varphi)')text(cos(phi) + .1*(sign(cos(phi))-.5), sin(phi)/2, 'sin(\varphi)') text(cos(phi)*.2, sin(phi)*.1,'\varphi');pause(.5); end

Characteristics of the sine wave

The sin wave has three primary characteristics:

Questions & Answers

calculate molarity of NaOH solution when 25.0ml of NaOH titrated with 27.2ml of 0.2m H2SO4
Gasin Reply
what's Thermochemistry
rhoda Reply
the study of the heat energy which is associated with chemical reactions
Kaddija
How was CH4 and o2 was able to produce (Co2)and (H2o
Edafe Reply
explain please
Victory
First twenty elements with their valences
Martine Reply
what is chemistry
asue Reply
what is atom
asue
what is the best way to define periodic table for jamb
Damilola Reply
what is the change of matter from one state to another
Elijah Reply
what is isolation of organic compounds
IKyernum Reply
what is atomic radius
ThankGod Reply
Read Chapter 6, section 5
Dr
Read Chapter 6, section 5
Kareem
Atomic radius is the radius of the atom and is also called the orbital radius
Kareem
atomic radius is the distance between the nucleus of an atom and its valence shell
Amos
Read Chapter 6, section 5
paulino
Bohr's model of the theory atom
Ayom Reply
is there a question?
Dr
when a gas is compressed why it becomes hot?
ATOMIC
It has no oxygen then
Goldyei
read the chapter on thermochemistry...the sections on "PV" work and the First Law of Thermodynamics should help..
Dr
Which element react with water
Mukthar Reply
Mgo
Ibeh
an increase in the pressure of a gas results in the decrease of its
Valentina Reply
definition of the periodic table
Cosmos Reply
What is the lkenes
Da Reply
what were atoms composed of?
Moses Reply
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, The art of the pfug. OpenStax CNX. Jun 05, 2013 Download for free at http://cnx.org/content/col10523/1.34
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'The art of the pfug' conversation and receive update notifications?

Ask