代码拉取完成,页面将自动刷新
function varargout = lzipencode(varargin)
%
% output = lzipencode(input)
% or
% [output, info] = lzipencode(input)
%
% Compress a string or a numerical array using LZip-compression
%
% This function depends on the ZMat toolbox (http://github.com/NeuroJSON/zmat)
%
% authors:Qianqian Fang (q.fang <at> neu.edu)
%
% input:
% input: the original data, can be a string, a numerical vector or array
%
% output:
% output: the compressed byte stream stored in a uint8 vector
% info: (optional) a struct storing the metadata of the input, see "help zmat" for details
%
% examples:
% [bytes, info]=lzipencode(eye(10));
% orig=lzipdecode(bytes,info);
%
% license:
% BSD or GPL version 3, see LICENSE_{BSD,GPLv3}.txt files for details
%
% -- this function is part of JSONLab toolbox (http://iso2mesh.sf.net/cgi-bin/index.cgi?jsonlab)
%
if (nargin == 0)
error('you must provide at least 1 input');
end
if (exist('zmat', 'file') == 2 || exist('zmat', 'file') == 3)
[varargout{1:nargout}] = zmat(varargin{1}, 1, 'lzip', varargin{2:end});
return
else
error('you must install ZMat toolbox to use this feature: http://github.com/NeuroJSON/zmat');
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。