Two ways to iterate over an array

Source: Internet
Author: User

One, normal array:

1, Subscript traversal:

v=[1,4,6,4,1];
s=0;
For I=1:length (v)
S=s+v (i);
End
Disp (s);

Results: 16

2, Element traversal:

v=[1,4,6,4,1];
s=0;
For Ve=v
S=s+ve;
End
Disp (s);

Results: 16

Two, an array of cells:

1, subscript traversal

strvec={' i ', ' am ', ' Iwantnon '};
Str=[];
For I=1:length (Strvec)
Str=[str, ', strvec{i}];
End
Disp (str);

Results: I am iwantnon

2, Element traversal:

strvec={' i ', ' am ', ' Iwantnon '};
Str=[];
For S=strvec
Str=[str, ', s{1}];
End
Disp (str);

Results: I am iwantnon

Note: Two, 2 in S is the 1*1 cell, need to access the s{1}.

--

An application of element traversal:

If the elements of the traversed array are themselves subscript (for example, the return value of the Find function, the index array), then it is more natural to iterate with the elements:

Index=find (a==0);

For I=index

A (i) = ...;

End

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.