楼主: Multivariate
1333 4

[Matlab-Based Book]Computational Modeling in Cognition [推广有奖]

  • 0关注
  • 0粉丝

硕士生

6%

还不是VIP/贵宾

-

TA的文库  其他...

Apache Spark NewOccidental

Real Estate NewOccidental

Item Response Modeling

威望
0
论坛币
960 个
通用积分
0.1002
学术水平
12 点
热心指数
12 点
信用等级
12 点
经验
1414 点
帖子
91
精华
1
在线时间
10 小时
注册时间
2006-4-17
最后登录
2022-10-27

1论坛币


Computational Modeling in Cognition:


Principles and Practice


Written for students and researchers, this book provides a comprehensive introduction to the principles of computational and mathematical modeling in psychology and cognitive science. The book is structured to help readers understand the logic of individual component techniques and their relationships to each other. Topics include models and theories in science, parameter estimation, and neural networks.

MATLAB is introduced and used to solve numerous examples in the book. In addition, a supplemental set of MATLAB code files is available for download.


Retrieve Companion Software


最佳答案

fumingxu 查看完整内容

**** 本内容被作者隐藏 ****
关键词:Computation cognition Modeling Comput MATLAB understand individual principles structured techniques

本帖被以下文库推荐

沙发
fumingxu 发表于 2016-3-21 09:59:39 |只看作者 |坛友微信交流群

本帖隐藏的内容

here?Stephan Lewandowsky, Simon Farrell-Computational Modeling in Cognition_ Pr.pdf (1.99 MB)


已有 3 人评分经验 论坛币 学术水平 热心指数 信用等级 收起 理由
沙耶加 + 1 + 1 + 1 精彩帖子
Nicolle + 100 + 100 + 1 + 1 + 1 精彩帖子
Multivariate + 5 + 1 + 1 + 1 精彩帖子

总评分: 经验 + 100  论坛币 + 105  学术水平 + 3  热心指数 + 3  信用等级 + 3   查看全部评分

使用道具

藤椅
Multivariate 发表于 2016-3-21 10:14:59 |只看作者 |坛友微信交流群
  1. nDataPts = 20;
  2. rho = .8;
  3. intercept = .0;

  4. %generate simulated data
  5. data=zeros(nDataPts,2);
  6. data(:,2) = randn (nDataPts,1) ; %*\label{line:3:gendata}*\%
  7. data(:,1) = randn (nDataPts,1) .* sqrt(1.0-rho^2) + (data (:,2).*rho) + intercept;  %*\label{line:3:gencordat}*\%

  8. %do conventional regression analysis and compute parameters
  9. bigX = [ones(nDataPts,1) data(:,2)];       %*\label{line:3:setupX}*\%
  10. y = data (:,1);
  11. b = bigX\y              %*\label{line:3:compreg}*\%

  12. %assign and display starting values and call parameter-estimation function
  13. startParms = [-1., .2]  %*\label{line:3:svs}*\%
  14. [finalParms,finDiscrepancy] = wrapper4fmin(startParms,data) %*\label{line:3:callwrapper}*\%
复制代码

使用道具

板凳
Multivariate 发表于 2016-3-21 10:15:51 |只看作者 |坛友微信交流群
  1. function preds = getregpred (parms,data)
  2. b1 = parms(1);
  3. b0 = parms(2);
  4. preds = b0 + (b1 .* data(:,2));   %*\label{line:3:grpcompute}*\%

  5. %plot current predictions and data and wait for keypress
  6. clf      
  7. hold on  
  8. plot (data(:,2),data(:,1), 'o', 'MarkerFaceColor',[0.4 0.4 0.4],'MarkerEdgeColor','black');
  9. plot (data(:,2),preds, '-k');
  10. axis([-2 2 -2 2]);
  11. xlabel('X','FontSize',18,'FontWeight','b');
  12. ylabel('Y','FontSize',18,'FontWeight','b');
  13. set(gca,'Ytick',[-2:2],'Xtick',[-2:2])
  14. box on
  15. pause
复制代码

使用道具

报纸
沙耶加 发表于 2016-3-21 11:43:28 |只看作者 |坛友微信交流群

使用道具

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

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

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

GMT+8, 2024-4-25 09:13