博客
关于我
压缩感知字典训练
阅读量:212 次
发布时间:2019-02-28

本文共 532 字,大约阅读时间需要 1 分钟。

function [Dictionary]=train(D,n)param.L = 3;   % number of elements in each linear combination.param.K = n; % number of dictionary elementsparam.numIteration = 6; % number of iteration to execute the K-SVD algorithm.param.errorFlag = 0; % decompose signals until a certain error is reached. do not use fix number of coefficients.%param.errorGoal = sigma;param.preserveDCAtom = 0;param.InitializationMethod =  'DataElements';param.displayProgress = 1;disp('Starting to  train the dictionary');[Dictionary,output]  = KSVD(D,param);end

转载地址:http://kdcp.baihongyu.com/

你可能感兴趣的文章
Netty常见组件二
查看>>
Netty应用实例
查看>>
netty底层——nio知识点 ByteBuffer+Channel+Selector
查看>>
netty底层源码探究:启动流程;EventLoop中的selector、线程、任务队列;监听处理accept、read事件流程;
查看>>
Netty心跳检测
查看>>
Netty心跳检测机制
查看>>
netty既做服务端又做客户端_网易新闻客户端广告怎么做
查看>>
netty时间轮
查看>>
Netty服务端option配置SO_REUSEADDR
查看>>
Netty核心模块组件
查看>>
Netty框架内的宝藏:ByteBuf
查看>>
Netty框架的服务端开发中创建EventLoopGroup对象时线程数量源码解析
查看>>
Netty源码—1.服务端启动流程一
查看>>
Netty源码—1.服务端启动流程二
查看>>
Netty源码—2.Reactor线程模型一
查看>>
Netty源码—2.Reactor线程模型二
查看>>
Netty源码—3.Reactor线程模型三
查看>>