⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 drawnorm.dlg

📁 是一个经济学管理应用软件 很难找的 但是经济学学生又必须用到
💻 DLG
字号:
/*
  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -