Create an array that has ones

조회 수: 2 (최근 30일)
Sean Raffetto
Sean Raffetto 2016년 7월 14일
편집: Andrei Bobrov 2016년 7월 14일
Hello,
I am trying to create a 1x256 cell array where each matrix inside is 256x41. I want each matrix to have a row of ones and the rest zeroes. For example, the first matrix will have the first row be ones and the rest zeroes. The second matrix will have the second row be all ones with the first row and all the rows after the second row be zeroes. Help? I'd like to loop this.
Thanks

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2016년 7월 14일
A=arrayfun(@(x) circshift([zeros(1,41);ones(255,41)],[x 1]),1:255,'un',0)
  댓글 수: 1
Sean Raffetto
Sean Raffetto 2016년 7월 14일
Thanks! This helps a lot!

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

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2016년 7월 14일
편집: Andrei Bobrov 2016년 7월 14일
num2cell(permute(repmat(eye(256),1,1,41),[1,3,2]),[1,2])
or
num2cell(bsxfun(@eq,(1:256)'*ones(1,41),reshape(1:256,1,1,[])),[1,2])
or
m = 256;
n = 41;
a = [ones(1,n);zeros(m,n)];
C = cell(m,1);
for jj = 1:m
ii = jj + 1;
a([jj,ii]) = a([ii,jj]);
C{jj} = a(2:end,:);
end

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by