Syntax:
intdynamics(cellList,cell)
intdynamics(cellList,cell,timelist)
intdynamics(cellList,cell,frame2time)
intdynamics(cellList,cell,signal)
intdynamics(cellList,cell,...,'area')
intdynamics(cellList,cell,...,'volume')
intdynamics(cellList,cell,...,'nodisp')
[intlist,timelist] = intdynamics(cellList,cell,...)
This function plots the dynamics of the signal in a single
cell from a list of cells obtained by MicrobeTracker. Note, the background has
to be corrected and necessary controls taken to accont for possible background
fluorescence and the signal integrated and present in the list.
-
<cellList> - an array
that contains the meshes. You can drag and drop the file with the data into
MATLAB workspace or open it using MATLAB Import Tool. The default name of the
variable is cellList, but it can be renamed.
-
<cell> - the number of the cell for which the
signal dynamics need to be investigated.
-
<timelist> - the list of timepoints when each frame
was taken. These points must be unique.
-
<frame2time> - the intervals between frames. If
'timelist' array is not provided, the each frame will be considered taken at a
different timepoint separated by 'frame2time' intervals. If not provided, the
data will be plotted versus frame rathen than time. The constructed timelist
can be obtained at function's output.
-
<signal> - the signal field which
will be processed. Must be in single quotes and must start with the word
'signal'. The default is 'signal1'.
-
'area'/'volume' - normalize the signal inside cells by
the area or volume of that cell. Otherwise the total signal will be calculated
for each cell (and averaged for each timepoint).
-
'nodisp' - do not produce a plot (otherwise it is
automatically created). Note, the command does not open a new figure window
if at least one exists already. Use MATLAB's 'figure' command to create a new
figure if you wish to avoid replotting any of the existing figures.
-
<intlist> - mean intensity array corresponding to
all cells at the 'timelist' points.
|