<< Chapter < Page Chapter >> Page >

Running simulations

In this section we will step through 2 different simulations using the matlab code. In the First simulation we will stimulate several cells in an assembly and several "noise" cells. Then the assembly will activate, shut down the noise and eventually die out. In the second we will have to different assemblies "compete".

Simulation 1

I have created a code called pattern _ maker.m which is an easy way to get a matrix will a designated number of cells, number of patterns, and number of cells per pattern. We will start with a network with 50 excitatory cells and train it with 8 patterns, containing 8 cells in each pattern. Type help pattern _ maker into a matlab prompt to get the details:

>> help pattern_maker pattern_maker.m - creates a pattern matrix. Each row represents a pattern with 1's for active cells, 0's for inactive cells. pattern = pattern_maker(n_cells,n_patterns,n_active) where: n_cells = number of cells n_pattern = number of patterns n_active = number active units per pattern output: pattern = n_patterns x n_cells matrix with each row a randomized pattern with n_active units

Now lets create a variable pp which will store the pattern matrix.

>> pp = pattern_maker(50,8,8);

Now that we have a pattern we can run the main piece of code that will do the simulation: LF _ network.m. Note that many of the parameters are only accessible in the code and would have to be directly edited if the user wishes to change them.

>> help LF_network LF_network.m - This function runs the Lansner-Fransen type simulations as detailed in their paper - "Modelling Hebbian cell assemblies comprised of cortical neurons". There are an equal number of excitory and inhibitory cells. Each excitory cell has a companion inhibitory cell which synapses onto it. The network is trained with different patterns loaded in. Then its calls a code which produces connection strengths. Positive strengths form Excitory to Excitory connections. Negative strengths form connections from Excitory to Inhibitory cells. [v_ex,v_in] = LF_network(dt,Tcutoff,Tfin,I0,stim_cells,Patterns) where: dt = time step Tcutoff = time cutoff for stimulated cells Tfin = time end simulation I0 = stimulation size for cells stim_cells = vector of cells recieving stimulus Patterns = matrix where each row is a pattern the network is trained with returns: v_ex = Voltages for excitory cells, indexed as ve(cell,timestep,compartment)v_in = Voltages for inhibitory cells, indexed as vi(cell,timestep,compartment)ex. pp = pattern_maker(50,8,8) [v_ex, v_in] = LF_network(.01,50,350,1,[1 6 8 10 25],pp);

As explained in the help file above one must choose the cell numbers to stimulate. In order to pick several cells in one assembly we will enter the following command to get the indices of one of the patterns:

>> find(p(1,:)==1) ans = 19 23 28 29 32 35 36 42

Thus we will choose to stimulate cells 19, 23, 28, 29 and add the noise stimuli of cells 45, 46, and 47. The simulation will last for 350 ms and the stimulation will last for 50 ms. A 1.5 nA stimulus is injected into each respective cell soma. After the output is saved we load the results in a code which displays the results: viewer.m.

Questions & Answers

what is biology
Hajah Reply
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
cell is the building block of life.
Condoleezza 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