Code covered by the BSD License
Highlights from
fca 2.2
-
fca
-
...
-
fca_defhistograms_gui(varargi...
FCA_DEFHISTOGRAMS_GUI M-file for fca_defhistograms_gui.fig
-
fca_gui(varargin)
FCA_GUI M-file for fca_gui.fig
-
fca_lineplot(mainhandle, par1...
function lineplot_handle = fca_lineplot(fcsdat,fcshdr,par1,EventsInROI)
-
cameratoolbar2(varargin)
cameratoolbar2 Interactively manipulate camera.
-
draggable(h,varargin)
DRAGGABLE - Make it so that a graphics object can be dragged in a figure.
-
fca_2dgraph_settype
loading the main gui handle
-
fca_delete_histogram()
loading the "main" and the "defhistograms" gui handle
-
fca_delete_roi
delete the roi related objects
-
fca_draw_roi;
-
fca_lineplot2hist()
-
fca_lineplot2xls()
-
fca_plot3d(fcsdat, fcshdr, pa...
function plot3d_handle = fca_plot3d(fcsdat,fcshdr,par1,par2,par3,indexnr)
-
fca_readfcs(filename)
[fcsdat, fcshdr, fcsdatscaled] = fca_readfcs(filename);
-
fca_refresh_roi(roi_handler)
loading the main gui handle
-
fca_setymax()
check the mouse click type: only double click can initiate
-
hist2(x, y, xedges, yedges)
-
View all files
from
fca 2.2
by Laszlo Balkay
Flow cytometric analysis GUI.
|
| fca_refresh_roi(roi_handler)
|
function fca_refresh_roi(roi_handler)
current_fig_h = gcf;
roi_x = get(roi_handler,'XData');
roi_y = get(roi_handler,'YData');
% loading the main gui handle
fca_main_h = findobj('tag','fca_main_figure');
main_gui_handles = guidata(fca_main_h);
% looking for the dotplot serial number for the current figure
current_fig_name = get(current_fig_h,'name');
dotplot_found = 0;
serial_i = 0;
while dotplot_found == 0
serial_i = serial_i + 1;
dotplot_name = get(main_gui_handles.dotplots(serial_i).dotplot_handle,'name');
dotplot_found = strcmp(dotplot_name,current_fig_name);
end
% saving the roi related data to the main handle
main_gui_handles.dotplots(serial_i).events_in_roi = [];
main_gui_handles.dotplots(serial_i).roi_x = roi_x;
main_gui_handles.dotplots(serial_i).roi_y = roi_y;
guidata(fca_main_h, main_gui_handles);
% refresh the histograms
%fca_gui('DataRefreshOnHistograms',main_gui_handles);
|
|
Contact us at files@mathworks.com