How do I pass extra known parameters to arrayfun?
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
xingxingcui
il 6 Ago 2021
Modificato: xingxingcui
il 6 Ago 2021
For example, if I want to find the position in the corresponding array b from each element of array a, how should I write the code?
a = [1,2,3];
b = [2,1,1,3,1,2];
idx = arrayfun(@(x,b)find(x==b),a,b)
The desired idx outcome is:{[2,3,5],[1,6],[4]}
0 Commenti
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!