有没有没有for循环的方法?

时间:2018-08-10 21:36:13

标签: matlab function for-loop matrix

目前我在MATLAB中具有此功能

function [ y ] = pyramid( x )
%PYRAMID Returns a "pyramid"-shapped matrix.
y = zeros(x); % Creates an empty matrix of x by x.
rings = ceil(x/2); % Compute number of "rings".
for n = 1:rings
    % Take the first and last row of the ring and set values to n.
    y([n,x-n+1],n:x-n+1) = n*ones(2,x-2*(n-1));
    % Take the first and last column of the ring and set values to n.
    y(n:x-n+1,[n,x-n+1]) = n*ones(x-2*(n-1),2);
end
end

哪个会产生以下输出:

piramide(4)
ans =
     1     1     1     1
     1     2     2     1
     1     2     2     1
     1     1     1     1

piramide(5)
ans =
     1     1     1     1     1
     1     2     2     2     1
     1     2     3     2     1
     1     2     2     2     1
     1     1     1     1     1

piramide(6)
ans =
     1     1     1     1     1     1
     1     2     2     2     2     1
     1     2     3     3     2     1
     1     2     3     3     2     1
     1     2     2     2     2     1
     1     1     1     1     1     1

是否有一种无需使用for循环即可达到相同结果的方法?

1 个答案:

答案 0 :(得分:5)

如果您拥有图像处理工具箱,则可以使用bwdist

export FLASK_ENV=development

使用min的其他解决方案:

function y = pyramid(x)
    m([1 x], 1:x) = 1;
    m(1:x, [1 x]) = 1;
    y = bwdist(m,'chessboard')+1;
end