楼主: xuelida
9257 17

[下载]gauss Programming Language [推广有奖]

  • 1关注
  • 94粉丝

教师

计量经济学

学科带头人

50%

还不是VIP/贵宾

-

威望
1
论坛币
58808 个
通用积分
27.8128
学术水平
394 点
热心指数
256 点
信用等级
169 点
经验
47973 点
帖子
1506
精华
7
在线时间
1066 小时
注册时间
2005-12-5
最后登录
2024-2-14

楼主
xuelida 在职认证  发表于 2006-11-15 00:39:00 |只看作者 |坛友微信交流群|倒序 |AI写论文
相似文件 换一批

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币

1 Advanced Input/Output 1
1.1 The Text File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1.1 Writing a text file . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1.2 Reading a text file . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.1.3 Working with Text Files . . . . . . . . . . . . . . . . . . . . . . . . 2
1.2 ODBC . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.2.1 ODBC Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
1.3 Keywords . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7
2 Programming in GAUSS 11
2.1 Control Statements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
2.1.1 Loops . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
2.1.2 Conditional Branching . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.2 Structures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 13
2.2.1 The DS and PV Structures . . . . . . . . . . . . . . . . . . . . . . 14
2.3 N-Dimensional Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 16 72384.pdf (297.52 KB)


2.3.2 Entering into Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . 17
2.3.3 Getting from Arrays . . . . . . . . . . . . . . . . . . . . . . . . . . 18
2.3.4 Looping Through Arrays . . . . . . . . . . . . . . . . . . . . . . . 19
2.4 Procedures . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 19
2.4.1 Structure Arguments . . . . . . . . . . . . . . . . . . . . . . . . . . 21
2.4.2 Vectorizing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22
2.4.3 Exercises . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
2.5 A Program For Dichotomous Dependent Variable Regression . . . . . . . 23
2.5.1 Source File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 23
2.5.2 Library File . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
2.5.3 Global Variables . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27
2.5.4 Example . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28
3 Foreign Language Interface

3.1 Using a DLL to speed up loops . . . . . . . . . . . . . . . . . . . . . . . . 31
3.1.1 Adding a Function to glib . . . . . . . . . . . . . . . . . . . . . . . 32
3.1.2 A Recursive Calculation . . . . . . . . . . . . . . . . . . . . . . . . 33
3.2 Adding Existing Fortran Code to a DLL . . . . . . . . . . . . . . . . . . . 36
3.2.1 Adding the New Function to glib . . . . . . . . . . . . . . . . . . . 47
3.2.2 Exercise . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 53
4 Optimization with the Quasi-Newton Method 55
4.0.3 The Quasi-Newton Method . . . . . . . . . . . . . . . . . . . . . . 57
4.1 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 62
5 Constrained Maximum Likelihood 65
5.1 CML . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 66

5.2 Inference . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 71
5.2.1 Confidence Limits by Inversion . . . . . . . . . . . . . . . . . . . . 71
5.2.2 Bootstrap . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 72
5.3 Inference When True Values On or Near Constraint Boundaries . . . . . . 73
5.3.1 Case 1: Confidence Limits of Constrained Parameter of Interest . . 74
5.3.2 Case 2: Confidence Limits of Unconstrained Parameter in Presence
of Constrained Nuisance Parameters . . . . . . . . . . . . . . . . . 74
5.3.3 Case 3: Confidence Limits of Constrained Parameter in Presence
of Constrained Nuisance Parameters . . . . . . . . . . . . . . . . . 75
5.4 Summary . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 75
5.5 References . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 76

266613.pdf (297.52 KB)

[此贴子已经被作者于2008-11-13 19:16:52编辑过]

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:Programming Language Program GAUSS gram 下载 Programming GAUSS Language

已有 1 人评分经验 论坛币 学术水平 收起 理由
xuehe + 100 + 40 + 1 根据规定进行奖励

总评分: 经验 + 100  论坛币 + 40  学术水平 + 1   查看全部评分

沙发
brwei2007 发表于 2008-6-2 14:37:00 |只看作者 |坛友微信交流群
gauss懂的人本来就不多,资料应免费,让过多的人了解它,这样对推动gauss的交流也有好处,强烈建议有关gauss的资料免费

使用道具

提示: 作者被禁止或删除 内容自动屏蔽

使用道具

板凳
dstimhk 发表于 2008-7-10 15:38:00 |只看作者 |坛友微信交流群
thx!!

使用道具

报纸
liukingstar 发表于 2008-7-12 00:10:00 |只看作者 |坛友微信交流群
强烈建议免费!至少要介绍一下主要内容!

使用道具

地板
kgbak 发表于 2008-7-16 18:33:00 |只看作者 |坛友微信交流群
提示: 该帖被管理员或版主屏蔽

使用道具

7
cfa2go 发表于 2008-7-28 03:37:00 |只看作者 |坛友微信交流群
good

使用道具

8
aimms 发表于 2008-8-15 19:25:00 |只看作者 |坛友微信交流群
说的对

使用道具

9
why4000 发表于 2008-10-7 17:34:00 |只看作者 |坛友微信交流群
是一本很好的书吗?

使用道具

10
wangbaojiang 发表于 2008-10-19 12:45:00 |只看作者 |坛友微信交流群
hao

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-5-9 18:01