博客
关于我
压缩感知字典训练
阅读量: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/

你可能感兴趣的文章
mysql数据库root密码忘记,查看或修改的解决方法
查看>>
MySQL数据库SQL注入靶场sqli通关实战(附靶场安装包)
查看>>
MYSQL数据库下载安装(Windows版本)
查看>>
MySQL数据库与Informix:能否创建同名表?
查看>>
mysql数据库中的数据如何加密呢?mysql8.0自带新特性
查看>>