Home > vbmeg > functions > gui > preAnalysis > meeg_processor > signal_processor > vb_signal_processor_new.m

vb_signal_processor_new

PURPOSE ^

Launch signal filter GUI.

SYNOPSIS ^

function h = vb_signal_processor_new

DESCRIPTION ^

 Launch signal filter GUI.
 [USAGE]
    vb_signal_processor_new;
 [IN]
    none
 [OUT]
    h : figure handle of the GUI.

 Copyright (C) 2011, ATR All Rights Reserved.
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function h = vb_signal_processor_new
0002 % Launch signal filter GUI.
0003 % [USAGE]
0004 %    vb_signal_processor_new;
0005 % [IN]
0006 %    none
0007 % [OUT]
0008 %    h : figure handle of the GUI.
0009 %
0010 % Copyright (C) 2011, ATR All Rights Reserved.
0011 % License : New BSD License(see VBMEG_LICENSE.txt)
0012 
0013 % Load figure
0014 h = openfig('vb_signal_processor.fig');
0015 %
0016 % --- Create objects of the GUI
0017 %
0018 H = guihandles(h);
0019 
0020 % Initialize member variables
0021 data = vb_signal_processor_init(h);
0022 data = vb_signal_processor_update_screen(data);
0023 
0024 % store application data in the figure
0025 guidata(h, data);

Generated on Mon 22-May-2023 06:53:56 by m2html © 2005