0

How can I write this is one command in Matlab (or without loop)

X=A;
for i =1:d-1
    X= cat(3, X, A);
end

I tried to use permute, and then repmat, but the singleton last dimension is eliminated automatically, so that does not help.

1
  • 3
    X = repmat(A,[1 1 d]) Look for more ways to replicate here Commented May 6, 2014 at 17:54

1 Answer 1

1

Use the repmat function (see repmat doc)

X = repmat(A, [size(A), d])
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.