资源简介
根据网格聚类中的小波变换聚类方法原理,写出小波变换聚类代码
代码片段和文件信息
%Assigns elements to cells and computes cell counts.
%Meant as a helper function; don‘t call directly unless you have a reason.
function [counts] = assign_cells(datacells weights num_cells)
%This will expand the 2D matrix into a multidimensional structure (thus
%no size() around num_cells)... num_cells is a vector.
counts = zeros(num_cells);
idxcell = num2cell(datacells 1);
countidx = sub2ind(size(counts) idxcell{:});
for countpos = 1:length(countidx)
%TODO: Vectorize.
counts(countidx(countpos)) = counts(countidx(countpos)) + weights(countpos);
end
%Low-order: use sparse. High-order: use sptensor.
%counts = sparse(counts); %Most of the counts will be 0. This saves
%memory.
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 771 2010-04-21 23:12 assign_cells.m
文件 1646 2010-04-20 00:49 data2grid.m
文件 1109 2011-01-29 00:00 dwtN.m
文件 555 2011-03-26 14:22 EXAMPLE_USAGE.m
文件 303 2011-01-28 23:41 fold.m
文件 785 2009-06-25 17:48 grid_wavecluster_output.m
文件 36519 2010-04-21 23:30 LICENSE.txt
文件 1299 2011-01-29 00:16 swtN.m
文件 268 2011-01-28 23:32 unfold.m
文件 645 2009-01-29 08:30 vol2features.m
文件 1525 2009-04-04 23:21 WaveCluster.m
文件 11058 2011-03-26 14:07 wavecluster_example_data.mat
文件 2416 2010-04-21 23:10 WaveCluster_Preprocess.m
- 上一篇:QT一个多界面自由切换代码
- 下一篇:catering_sale.xls
相关资源
- QT一个多界面自由切换代码
- ROS创建工作空间代码我写的博客配套
- 数据结构课程设计——收藏夹和购物
- 电子沙漏全套代码 PCB原理图
- ADS8320驱动代码.rar
- ADS1220驱动代码
- linecount3.7
- 2019-全国行政区域代码.xlsx
- 树莓派用I2C读取mpu9250代码
- 边界元程序代码
- BP神经网络算法,内含3个程序,直接
- R for Data ScienceR数据科学源代码
- 如何用一行代码查询电脑配置详细信
- 中国各省市代码名称三级
- SCMA学习代码
- 汇编语言单片机5路抢答器代码
- TMS320C6416芯片二次bootloader的汇编代码
- 深度学习之美AI时代的数据处理与最佳
- 智能小车控制代码
- OLED4线SPI改IIC的方法和测试代码
- linux计算器代码
- 单片机孵化环境温度湿度监控系统设
- 基于HOG和LBP的行人检测代码
- 树莓派小车自动驾驶完整源代码
- STM32驱动MG955舵机的源代码
- workbench二次开发代码
- 视频压缩代码
- mimo信道容量及和速率的仿真代码
- NSGA2源代码
- AES256verilog代码
评论
共有 条评论