필터 지우기
필터 지우기

Comma separated list generation

조회 수: 2 (최근 30일)
Jan
Jan 2011년 6월 22일
편집: Stephen23 2024년 2월 22일
How can you expand a comma separated list from a repetition? I am searching for the elegant way to do something like this:
Instead of
Y = blkdiag(X, X, X),
write Y = repblkdiag(X,3). The code I use now is:
function Y = repblkdiag(X, n)
Y = [];
for j = 1:n
Y = blkdiag(Y, X);
end
I expected that something like
Y = blkdiag(deal(repmat(X,3)))
would work. Thanks for your interest and contribution,
Jan

채택된 답변

Andrei Bobrov
Andrei Bobrov 2011년 6월 22일
xc = repmat({X},1,3)
Y = blkdiag(xc{:})
  댓글 수: 4
Teja Muppirala
Teja Muppirala 2011년 6월 22일
It is possible to do it in one line, but I think Andrei's solution is simpler.
Y = eval(['blkdiag( ' repmat('X,',1,3) '[])'])
Stephen23
Stephen23 2024년 2월 22일
편집: Stephen23 2024년 2월 22일
Another neat approach:
C = {X};
Y = blkdiag(C{[1,1,1]})
One line (since R2019b):
Y = blkdiag(struct('x',repmat({X},1,3)).x)
... but I recommend using two lines.

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

추가 답변 (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