How do I pass extra known parameters to arrayfun?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
xingxingcui
am 6 Aug. 2021
Bearbeitet: xingxingcui
am 6 Aug. 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 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!