Yapı Dizileri(Structure Arrays)

Posted by Admin On Sunday, August 26, 2012 0 comments
Yapı dizileri herhangi bir boyutta olabilirler. Elemanlara parantezle erişilebilir. Örneğin:

S(1).a=4;
S(2).a=5;
S(1).b=46;
S(2).c=ones(3);
S(3).a=magic(2);
S(4).b='world';

S


S =

1x4 struct array with fields:
    a
    b
    c

0 comments:

Post a Comment