Filter löschen
Filter löschen

Referring to an element within a cell array element

4 Ansichten (letzte 30 Tage)
Ali Kiral
Ali Kiral am 2 Nov. 2022
Kommentiert: Ali Kiral am 2 Nov. 2022
x{1}=[1;2;3];
for i=1:4
x{i+1}=x{i}+5;
end
The above small script generates a 1x5 cell array. Every element of x is a 3x1 array. I can see the contents of x using celldisp, for example x{3}=[11;12;13]. Now how do I address, for example, 12, the second element of third element of x?

Akzeptierte Antwort

Dyuman Joshi
Dyuman Joshi am 2 Nov. 2022
%pre-allocation
x=cell(1,5);
x{1}=[1;2;3];
for i=1:4
x{i+1}=x{i}+5;
end
value=x{3}(2)
value = 12

Weitere Antworten (0)

Kategorien

Mehr zu Structures 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