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

📄 alias.m

📁 这是一个基于matlab开发的关于c语言的图形转换程序,可实现直方图的生成和传输
💻 M
字号:
function y = alias(x,L,nStart);%ALIAS Alias the vector x%   y = ALIAS(x,L,nStart) aliases the vector x using sections of length L.%   nStart denotes the index of the first element in the vector x.  If omitted%   the vector is assumed to start at the origin.%%   This function implements:%%     y[n] = x[n] + x[n-L] + x[n+L] + x[n-2L] + ...     for n = 0,...,L-1%          = 0                                          else%%   and returns the nonzero portion in the vector y% Jordan Rosenthal, 5/4/98if nargin < 2, error('Not enough input arguements.'); endD = size(x);if (length(D) ~= 2) | all( D ~= 1)   error('x must be a a vector.');elseif fix(L)~=L | L < 1   error('L must be a positive integer.');endif nargin == 2   nStart = 0;elseif fix(nStart)~=nStart   error('nStart must be an integer.');endif D(1) == 1   ISROW = 1;   x = x(:);else   ISROW = 0;endnend = nStart + length(x) - 1;nFillLow = mod(nStart,L);nFillHigh = L - mod(nend,L) - 1;y = [zeros(nFillLow,1); x; zeros(nFillHigh,1)];y = reshape(y,L,length(y)/L);y = sum(y,2);if ISROW   y = y.';end

⌨️ 快捷键说明

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