필터 지우기
필터 지우기

im stuck on making a layered matrix

조회 수: 1 (최근 30일)
Tristan Murphy
Tristan Murphy 2019년 5월 3일
댓글: Tristan Murphy 2019년 5월 3일
function surround = surroundWith(a,b)
%function will take a given matrix 'a' and create a ring of numbers 'b' around
%it
surround = zeros(size(a,1)+2,size(a,2)+2); %sets the size of the matrix after the numbers b has been placed around 'a'
for ii = 1:size(a,1)+2
for jj = 1:size(a,2)+2
if (ii == 1 || ii == size(a,1)+2 || jj == 1 || jj == size(a,2)+2)
surround(ii,jj) = b; %setting the ring of pre-allocated zeros around 'a' to be 'b'
end
end
end
for kk = 1: size(a,1)
for ll = 1:size(a,2)
surround(kk+1,ll+1) = a(kk,ll);%setting the zeros within b to the numbers stored in 'a' at the corresponding locations
end
end
end
% if a = [1,2,3:4,5,6], and b = 5 the matrix should come out as:
5 5 5 5 5
5 1 2 3 5
5 4 5 6 5
5 5 5 5 5
im attempting to recreate this using only one parameter and to create a matrix with a 1 at the centre with a ring of numbers layered on top of eachother, increasing in value up to 'b' as the distance from the centre increases so:
%so layeredMatrix(5) should output:
5 5 5 5 5 5 5 5 5
5 4 4 4 4 4 4 4 5
5 4 3 3 3 3 3 4 5
5 4 3 2 2 2 3 4 5
5 4 3 2 1 2 3 4 5
5 4 3 2 2 2 3 4 5
5 4 3 3 3 3 3 4 5
5 4 4 4 4 4 4 4 5
5 5 5 5 5 5 5 5 5
ive been having a lot of trouble with this and would appriciate any help

채택된 답변

Geoff Hayes
Geoff Hayes 2019년 5월 3일
Tristan - why not use a for loop
surround = 1;
for k = 2:5
surround = surroundWith(surround, k);
end
  댓글 수: 5
Geoff Hayes
Geoff Hayes 2019년 5월 3일
편집: Geoff Hayes 2019년 5월 3일
since you are told that this solution would be very helpful then I don't understand why you can't use it. :)
function layered = makelayered(a)
layered = 1;
for k = 2:a
layered = surroundWith(layered, k);
end
end
Tristan Murphy
Tristan Murphy 2019년 5월 3일
alrighty thanks for all the help :)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by