access data in nested arrays in a structure?

1 Ansicht (letzte 30 Tage)
Najmeh Eskandari
Najmeh Eskandari am 8 Feb. 2019
Beantwortet: Walter Roberson am 8 Feb. 2019
Hi.
I want to calculate r through structure L:
L=struct('L0',{{[0,0],[0,0],[.5,1,2,3,5,4],[0]},{[0;1],[0,2],[-4,1,2,3,5,10],[2]}});
r=L.L0;
but r=L.L0 is wrong.
i want r={{[0,0],[0,0],[.5,1,2,3,5,4],[0]},{[0;1],[0,2],[-4,1,2,3,5,10],[2]}} but r is L0{1}.
How can i access to L0 ?
  2 Kommentare
madhan ravi
madhan ravi am 8 Feb. 2019
Give an example of your desired output.
Najmeh Eskandari
Najmeh Eskandari am 8 Feb. 2019
I want :
r={{[0,0],[0,0],[.5,1,2,3,5,4],[0]},{[0;1],[0,2],[-4,1,2,3,5,10],[2]}};
but r=L.L0 is:
r={[0,0],[0,0],[.5,1,2,3,5,4],[0]};

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 8 Feb. 2019
{L.L0}

Weitere Antworten (0)

Kategorien

Mehr zu Data Types 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