博客
关于我
压缩感知字典训练
阅读量: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工作笔记0066---Netty核心模块内容梳理
查看>>
Vue基本使用---vue工作笔记0002
查看>>
Netty工作笔记0068---Protobuf机制简述
查看>>
Netty工作笔记0069---Protobuf使用案例
查看>>
Netty工作笔记0070---Protobuf使用案例Codec使用
查看>>
Netty工作笔记0071---Protobuf传输多种类型
查看>>