drawnorm.dlg

来自「是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到」· DLG 代码 · 共 50 行

DLG
50
字号
/*
  drawnorm

*! VERSION 1.1.0  03feb2005

  (Uses the corr2data idlg files)

*/

VERSION 9.0

INCLUDE _std_large
INCLUDE _ht330
INCLUDE header
HELP hlp1, view("help drawnorm")
RESET res1

DIALOG main, label("drawnorm - Draw sample from multivariate normal distribution") /*
		*/ tabtitle("Main")
BEGIN
  INCLUDE  _corr2data
END


INCLUDE _corr2data_sc

DIALOG opt, tabtitle("Options")
BEGIN
  CHECKBOX ck_seed      _lft      _top      _ckwd     .,		/*
		*/ clickon("gaction opt.sp_seed.enable")		/*
		*/ clickoff("gaction opt.sp_seed.disable")		/*
		*/ label("")
  SPINNER  sp_seed      _cksep    @         _spwd     .,		/*
		*/ min(1) max(10000000) default(12345)			/*
		*/ option(seed)						/*
		*/ label("Set seed")
  TEXT     tx_seed      _spsep    @         _ckspr    .,		/*
		*/ label("Seed for random-number generator")
END

PROGRAM command
BEGIN
	put "drawnorm "
	INCLUDE _corr2data_pr
	beginoptions
		optionarg opt.sp_seed
	endoptions
END

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?