⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imload.m

📁 算术编码是把一个信源表示为实轴上0和1之间的一个区间
💻 M
字号:
function [A] = imload(imname,nrows,nclmns)
% The function loads an image in matlab.
% Usage: 	A = IMLOAD ('IMNAME', NROWS, NCLMNS)
%	where	A: 	image in a matrix
%		IMNAME:	name of the image file to be loaded in matlab syntax
%		NROWS:	number of rows in the image
%		NCLMNS:	number of columns  in the image
 fid = fopen(imname,'r');
 size = [nrows, nclmns];
 A = fread(fid, size);
 fclose(fid);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -