Filter löschen
Filter löschen

How to access array within array?

4 Ansichten (letzte 30 Tage)
Nagarajan sivathanu
Nagarajan sivathanu am 6 Feb. 2012
Hi, I stored 3 1D arrays within an array.
Q={[11121 5185 8014 11378 4888 4210];[4115 4728 5386 12746 5301 5738];[2442 1188 1212 2648 1862 1948]};
Here I donot know how to access a particular value say 5185.
Waiting for ur positive replies.

Akzeptierte Antwort

Andrei Bobrov
Andrei Bobrov am 6 Feb. 2012
out = Q{1}(2)
for your case from eg:
Qdbl = cat(1,Q{:})
out = Qdbl(1,2)

Weitere Antworten (0)

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!

Translated by