Avoiding for loop with ismember
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Christian
le 23 Juin 2017
Modifié(e) : Andrei Bobrov
le 23 Juin 2017
Hi, suppose N is a scalar, and c is a numerical vector with unique elements that are a subset of 1:N, i.e. its size is smaller or equal to N. For example, N=4, and c=[1 2 4]'; Then, is there a more elegant way to achieve this?
cc = [];
for j = 1:N
if ismember(j,c)
cc = [cc; N*(j-1)+c];
end
end
Thanks!
2 commentaires
Réponse acceptée
Andrei Bobrov
le 23 Juin 2017
Modifié(e) : Andrei Bobrov
le 23 Juin 2017
[Fixed]
N = 15;
c = randperm(N,4);
c1 = sort(c(:));
cc = reshape(bsxfun(@plus,N*(c1 - 1),c1')',[],1);
or
oc = ones(numel(c1),1);
cc = N*(kron(c1,oc) - 1) + kron(oc,c1);
or
c = c(:);
nn = numel(c);
cc = N*(repelem(c,nn) - 1) + repmat(c,nn,1);
6 commentaires
Stephen23
le 23 Juin 2017
@Christian: With the data you have shown us cc will definitely be a matrix. If c is a column vector then you should specify this in your question.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!