Putting commas and colons

1 view (last 30 days)
Siavash Jalali
Siavash Jalali on 9 Jun 2011
Hi all, I'm trying to access an index in the last dimension of a distributed array, is there any function that puts the number of colon+comma I want? For example:
x = distributed.rand(3,3,3,3,3,3,3,3);
% I want to access:
x(:,:,:,:,:,:,:,2)
% I need something to put these :,:,:,:,:,
but since my data doesn't always have the same dimensions I cannot just hard code these :,:,:,:, so I was wondering if there's any alternative way to access some index from the last dimension.

Accepted Answer

Matt Fig
Matt Fig on 9 Jun 2011
x = rand(3,3,3,3,3,3,3,3);
Y = repmat({':'},1,7);
x(Y{:},2)
  2 Comments
Siavash Jalali
Siavash Jalali on 9 Jun 2011
Thanks a ton! You made my day :D
Sean de Wolski
Sean de Wolski on 9 Jun 2011
Genius! I didn't know you could do that.

Sign in to comment.

More Answers (0)

Categories

Find more on Programming in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!