资源简介
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‘)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-10-04 12:23 源代码\Chapter 1\
文件 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
目录 0 2018-10-04 12:23 源代码\Chapter 10\
文件 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
目录 0 2018-10-04 12:23 源代码\Chapter 2\
文件 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
............此处省略71个文件信息
相关资源
- matlab_OFDM调制解调(来自剑桥大学)
- Matlab路面裂缝识别69319
- 高灵敏度GPS接收机MATLAB仿真,附捕获
- 基于MATLAB的质点弹道计算与外弹道优
- 阵列天线的matlab仿真
- MATLAB 经典程序源代码大全
- MATLAB小波软阈值去噪代码33473
- 天线阵的波束形成在MATLAB仿真程序及
- 非线性SVM算法-matlab实现
- 《MATLAB 智能算法超级学习手册》-程序
- 组合导航matlab程序
- 读取txt文件内容matlab代码实现
- Matlab实现基于相关的模板匹配程序
- matlab优化工具箱讲解
- 基于MATLAB的快速傅里叶变换
- 光纤传输中的分布傅立叶算法matlab实
- 基于matlab的图像处理源程序
- matlab 椭圆拟合程序
- 算术编码解码matlab源代码
- optical_flow 光流法 matlab 实现程序
- 引导图像滤波器 Matlab实现
- 分形几何中一些经典图形的Matlab画法
- OFDM系统MATLAB仿真代码
- SVM工具箱(matlab中运行)
- 图像小波变换MatLab源代码
- LU分解的MATLAB实现
- 冈萨雷斯数字图像处理matlab版(第三
- 替代数据法的matlab程序
- 用matlab实现的多站定位系统性能仿真
- 通过不同方法进行粗糙集属性约简m
评论
共有 条评论