The creation and content reading of the cellular array in matlab

Source: Internet
Author: User

Create an array of cells

1, using the cell command to create a specification for the empty cell 2*2

>> A=cell (2,2)

A =

[] []
[] []

2. Create a cell array with curly braces "{}" and assign values

>> b={' abc ', [1,2,3];123, ' a '}

b =

' ABC ' [1X3 double]
[123] ' a '

Second, read the contents of the cell array

1. Gets the size of the specified cell, using the parentheses "()"

>> B (from)

Ans =

[1x3 Double]

2. Get the contents of the specified cell, using curly braces "{}"

>> b{1,2}

Ans =

1 2 3

3. Further obtain the contents of the specified cell, such as b{1,2}, to get the array specified element

>> b{1,2} (a)

Ans =

1

The creation and content reading of the cellular array in matlab

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.