Avoid loop for equality
2 次查看(过去 30 天)
显示 更早的评论
I have a variable
h = 2:2:8
I want to have 4 output variables depending on the 4 differnt h
A = y(s==h(1),:)
As you can see if I have it like this I need to do it 4 times for each h. Is there a possibility to do it like this in one step?
[A1, A2, A3, A4] = y(s==h,:)
6 个评论
Rik
2018-7-3
Despite your edit, this is still not a MWE. We don't have y or s, so we still cannot run this. I would also agree with Guillaume that it is a bad idea to number variables: writing A{1} A{2} A{3} instead of A1 A2 A3 will allow you to easily loop over all elements.
回答(1 个)
Guillaume
2018-7-3
Do not number variables. Creating variables A1, A2, ... is a bad idea, it will make for slow, hard to understand and difficult to debug code. If you start numbering variables it means that they're somehow related and would be better stored together in a single container that you can index easily.
It turns out you already have such a container, your y and you're probably better off keeping it as is. If you really need to you can split y into a cell array according to s but it's probably going to make subsequent calculations harder rather than easier:
[~, ~, rowid] = unique(s);
splity = accumarray(rowid, (1:numel(s))', [], {@(rid) y(rid, :)})
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!