资源简介
第二版MATLAB数据探索性分析各章节例题代码。简洁明了!!!非常适合初学者,这是我迄今为止见过的最好的入门教程
代码片段和文件信息
% try to reproduce the plot in Golub Figure 3B. This shows the normalized
% genes for ALL and AML. The data are standardized.
% Example 1.1
% Exploratory Data Analysis with MATLAB 2nd Edition
% Wendy L. and Angel R. Martinez and Jeff Solka
% First standardize the data such that each row has mean 0 and standard
% deviation 1.
load leukemia
x = leukemia(:1:38);
[np]=size(x);
y = zeros(np);
for i = 1:n
sig = std(x(i:));
mu = mean(x(i:));
y(i:)= (x(i:)-mu)/sig;
end
% Now do the image of the data.
pcolor(y)
colormap(gray(256))
colorbar
title(‘Gene expression for Leukemia‘)
xlabel(‘ALL (1-27) or AML (28-38)‘)
ylabel(‘Gene‘)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 676 2010-12-12 15:21 探索性数据分析源代码\Chapter 1\Example1_1.m
文件 413 2010-12-12 15:21 探索性数据分析源代码\Chapter 1\Example1_2.m
文件 548 2010-12-12 15:21 探索性数据分析源代码\Chapter 1\Example1_3.m
文件 1504 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_1.m
文件 844 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_10.m
文件 478 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_11.m
文件 496 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_12.m
文件 646 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_13.m
文件 1709 2010-12-12 14:48 探索性数据分析源代码\Chapter 10\Example10_14.asv
文件 1600 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_14.m
文件 658 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_15.m
文件 879 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_16.m
文件 652 2010-12-12 15:33 探索性数据分析源代码\Chapter 10\Example10_17.m
文件 580 2010-12-12 15:33 探索性数据分析源代码\Chapter 10\Example10_18.m
文件 490 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_2.m
文件 444 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_3.m
文件 375 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_4.m
文件 1382 2010-12-12 15:08 探索性数据分析源代码\Chapter 10\Example10_5.asv
文件 966 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_5.m
文件 1480 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_6.m
文件 541 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_7.m
文件 806 2010-12-12 15:31 探索性数据分析源代码\Chapter 10\Example10_8.m
文件 488 2010-12-12 15:32 探索性数据分析源代码\Chapter 10\Example10_9.m
文件 927 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_1.m
文件 2143 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_2.m
文件 1765 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_3.m
文件 1537 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_4.m
文件 1733 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_5.m
文件 2005 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_6.m
文件 598 2010-12-12 15:22 探索性数据分析源代码\Chapter 2\Example2_7.m
............此处省略76个文件信息
相关资源
- Pattern Recognition and Machine Learning(高清
- MATLAB 编程 第二版 Stephen J. Chapman 著
- 均值滤波和FFT频谱分析Matlab代码
- 《MATLAB扩展编程》代码
- HDB3码、AMI码的MATLAB实现
- 3点GPS定位MATLAB仿真
- MATLAB数字信号处理85个实用案例精讲入
- matlab从入门到精通pdf94795
- 欧拉放大论文及matlab代码
- 跳一跳辅助_matlab版本
- 全面详解LTE MATLAB建模、仿真与实现
- MIMO-OFDM无线通信技术及MATLAB实现_孙锴
- MATLAB Programming for Engineers 4th - Chapman
- matlab 各种谱分析对比
- 分数阶chen混沌matlab程序
- 基于粒子群算法的非合作博弈的matl
- MATLAB车流仿真 包括跟驰、延误
- matlab空间桁架计算程序
- 基于MATLAB的图像特征点匹配和筛选
- DMA-TVP-FAVAR
- GPS信号的码捕获matlab代码.7z
- 一维光子晶体MATLAB仿真代码吸收率折
- newmark法源程序
- 传统关联成像、计算鬼成像matlab
- pri传统分选算法
- 摆动滚子推杆盘形凸轮设计
- 医学图像重建作业matlab源码
- Matlab实现混沌系统的控制
- 检测疲劳驾驶
- Matlab锁相环仿真-Phase Locked Loop.rar
评论
共有 条评论