Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请原谅我这个高度新手的问题,但我真的希望我能尽快得到答案!
我有一个 1x2928 单元阵列,每个单元中有 58x58 双矩阵。 我要做的就是将每个 58X58 矩阵的 (12,47) 中的值从 249 单元格数组中提取到 280 中。
我敢打赌,答案一定很简单,但我已经搜索和搜索,我正在自学,所以现在任何帮助都会非常棒!
万谢!
更完整的答案:
cfrom = 249; cto = 280; ri = 12; ci = 47; vals = cellfun( @(x) x(ri,ci), cellArr(cfrom:cto) );
我想这可能会有所帮助
cell{ii}(12,47)
与ii = 249,...,280.
ii = 249,...,280
然后你可以使用for循环或cellfun在索引上运行它ii,
for
cellfun
ii