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

📄 genrandomrects.m

📁 SparseLab is a Matlab software package designed to find sparse solutions to systems of linear equati
💻 M
字号:
function I = GenRandomRects(n,k);
% This function generates an nxn image of k random rectangles

I = zeros(n);

for j = 1:k
    x1 = floor(rand * n);
    x2 = floor(x1 + rand * (n - x1));
    y1 = floor(rand * n);
    y2 = floor(y1 + rand * (n - y1));
    I(y1:y2,x1:x2) = I(y1:y2,x1:x2) + rand * ones(y2-y1+1, x2-x1+1);
end

    
%% Part of SparseLab Version:100% Created Tuesday March 28, 2006% This is Copyrighted Material% For Copying permissions see COPYING.m% Comments? e-mail sparselab@stanford.edu%

⌨️ 快捷键说明

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