ind2sub output in arrayform
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Bananach
il 16 Apr 2016
Modificato: Azzi Abdelmalek
il 16 Apr 2016
The syntax of ind2sub is
[s1,s2,s3,...,sd]=ind2sub(size,i)
where s1,... are d vectors of size Nx1 when i has size Nx1 and size has d dimensions.
Is there a way to write something like s=ind2sub(size,i) where s has size Nxd?
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 16 Apr 2016
Modificato: Azzi Abdelmalek
il 16 Apr 2016
A=randi(5,5,4,3)
id=[1 12 25 45]'
idx=cell(ndims(A),1)
[idx{:}]=ind2sub(size(A),id)
celldisp(idx)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!