资源简介
多分类逻辑回归.zip

代码片段和文件信息
function [h display_array] = displayData(X example_width)
%DISPLAYDATA Display 2D data in a nice grid
% [h display_array] = DISPLAYDATA(X example_width) displays 2D data
% stored in X in a nice grid. It returns the figure handle h and the
% displayed array if requested.
% Set example_width automatically if not passed in
if ~exist(‘example_width‘ ‘var‘) || isempty(example_width)
example_width = round(sqrt(size(X 2)));
end
% Gray Image
colormap(gray);
% Compute rows cols
[m n] = size(X);
example_height = (n / example_width);
% Compute number of items to display
display_rows = floor(sqrt(m));
display_cols = ceil(m / display_rows);
% Between images padding
pad = 1;
% Setup blank display
display_array = - ones(pad + display_rows * (example_height + pad) ...
pad + display_cols * (example_width + pad));
% Copy each example into a patch on the display array
curr_ex = 1;
for j = 1:display_rows
for i = 1:display_cols
if curr_ex > m
break;
end
% Copy the patch
% Get the max value of the patch
max_val = max(abs(X(curr_ex :)));
display_array(pad + (j - 1) * (example_height + pad) + (1:example_height) ...
pad + (i - 1) * (example_width + pad) + (1:example_width)) = ...
reshape(X(curr_ex :) example_height example_width) / max_val;
curr_ex = curr_ex + 1;
end
if curr_ex > m
break;
end
end
% Display Image
h = imagesc(display_array [-1 1]);
% Do not show axis
axis image off
drawnow;
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-06-22 08:05 多分类逻辑回归\
文件 1502 2013-11-12 01:39 多分类逻辑回归\displayData.m
文件 963 2015-06-22 08:02 多分类逻辑回归\ex3.m
文件 7511764 2013-11-12 01:39 多分类逻辑回归\ex3data1.mat
文件 8749 2015-02-26 07:07 多分类逻辑回归\fmincg.m
文件 412 2015-06-22 07:49 多分类逻辑回归\lrCostFunction.m
文件 1081 2015-06-22 08:02 多分类逻辑回归\oneVsAll.m
文件 690 2015-06-22 08:01 多分类逻辑回归\predictOneVsAll.m
文件 137 2013-11-12 01:39 多分类逻辑回归\sigmoid.m
相关资源
- PID_AutoTune_v0.rar
- vspd7.2.308.zip
- 价值2k的H漫画小说系统
- Pythonamp;课堂amp;笔记(高淇amp;400;集第
- ddos压力测试工具99657
- UML建模大全
- 开源1A锂电池充电板TP4056原理图+PCB
- m1卡 ic卡可选择扇区初始化加密软件
- TSCC.exe
- FTP课程设计(服务端+客户端)
- 计算机图形学 边填充算法实现代码
- 电力系统潮流计算程序集合
- oracle数据迁移项目实施方案
- Web Api 通过文件流 文件到本地
- Visio图标-最新最全的网络通信图标库
- Spire API文档
- OpenGL参考手册
- Python中Numpy库最新教程
- SPD博士V5.3.exe
- 直流无刷电机方波驱动 stm32 例程代码
- layui后台管理模板
- 仿知乎界面小程序源代码
- 云平台-阿里云详细介绍
- photoshop经典1000例
- scratch垃圾分类源码(最终版本).sb
- IAR ARM 7.8破解
- TI CCS V5.4 安装步骤及破解文件
- 松下plc FP-XH的驱动
- 局域网硬件信息收集工具
- 加快Windows XP操作系统开机速度
评论
共有 条评论