matlab 思维数组,Matlab-访问多维数组的一部分

I'm trying to access a part of a multidimensional array in Matlab - it could be done like this: X(2:3, 1:20, 5, 4:7)

However, neither the number of elements, nor the ranges are fixed, so I want to provide the indices from arrays - for the above example they'd be

ind1 = [2 1 5 4];

ind2 = [3 20 5 7];

For a fixed number of dimensions this is not a problem (X(ind1(1):ind2(1),...), but since they are not I'm not sure how to implement this in Matlab. Is there a way? Or should I approach this differently?

解决方案

Using comma separated lists you can make it a more quick and friendly:

% some test data

ind1 = [2 1 5 4];

ind2 = [3 20 5 7];

X = randi(99,20,20,20,20);

% get all subscripts in column format

vecs = arrayfun(@colon,ind1,ind2,'un',0);

% extract the values

result = X(vecs{:});

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值