Home > functions > common > utility > @file_dialog > file_dialog.m

file_dialog

PURPOSE ^

file_dialogクラスのコンストラクタ

SYNOPSIS ^

function [this] = file_dialog()

DESCRIPTION ^

 file_dialogクラスのコンストラクタ
 
 Copyright (C) Toshinori Yoshioka (yosioka@atr.jp)
 ATR Computational Neuroscience Laboratories (CNS)
 2-2-2 Hikaridai, Keihanna Science city, Kyoto, 619-0288, Japan
 License : New BSD License(see VBMEG_LICENSE.txt)

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [this] = file_dialog()
0002 % file_dialogクラスのコンストラクタ
0003 %
0004 % Copyright (C) Toshinori Yoshioka (yosioka@atr.jp)
0005 % ATR Computational Neuroscience Laboratories (CNS)
0006 % 2-2-2 Hikaridai, Keihanna Science city, Kyoto, 619-0288, Japan
0007 % License : New BSD License(see VBMEG_LICENSE.txt)
0008 
0009 % メンバを初期化する。
0010 public = init_public;
0011 private = init_private;
0012 this = struct('public',public, 'private',private);
0013 
0014 % クラスを登録する。
0015 this = class(this, 'file_dialog');

Generated on Tue 27-Aug-2013 11:46:04 by m2html © 2005