摘要: 题目地址:Exercise: Logistic Regression题目概要:某个高中有80名学生,其中40名得到了大学的录取,40名没有被录取。x中包含80名学生两门标准考试的成绩,y中包含学生是否被录取(1代表录取、0代表未录取)。过程:1、加载试验数据,并为x输入添加一个偏置项。x=load('ex4x.dat');y=load('ex4y.dat');x=[ones(length(y),1) x];2、绘制数据分布 % find returns the indices of the% rows meeting the specified conditio 阅读全文
posted @ 2013-05-28 17:53 elar 阅读(3001) 评论(4) 推荐(0) 编辑