Accessing a Matrix through an indices vector

6 Ansichten (letzte 30 Tage)
Dukwhan
Dukwhan am 15 Feb. 2011
I have a linear vector of dimensional indices (A) and would like to access a single element from matrix M using this vector.
e.g.
A = [3,5,6];
FUNC(m,A); // equivalent to m(3,5,6);
Is there a method in MATLAB that replaces FUNC that allows this?

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 15 Feb. 2011
EDIT: fixed per Oleg's catch of my mistake:
t = num2cell(A);
m(t{:})
Or if you prefer one-line answers better:
subsref(m, struct('type', repmat({'()'},1,length(A)), ...
'value', num2cell(A)))
  2 Kommentare
Oleg Komarov
Oleg Komarov am 15 Feb. 2011
I think in the first case:
A = [3,5,6];
B = rand(10,10,10);
idx = num2cell(A);
B(idx{:})
Dukwhan
Dukwhan am 15 Feb. 2011
Yes, Oleg's version works well. Thank you both!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Creating, Deleting, and Querying Graphics Objects 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!

Translated by