Array Indexing - MATLAB & Simulink (2024)

Open Live Script

In MATLAB®, there are three primary approaches to accessing array elements based on their location (index) in the array. These approaches are indexing by position, linear indexing, and logical indexing.

Indexing with Element Positions

The most common way is to explicitly specify the indices of the elements. For example, to access a single element of a matrix, specify the row number followed by the column number of the element.

A = [1 2 3 4; 5 6 7 8; 9 10 11 12; 13 14 15 16]
A = 4×4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
e = A(3,2)
e = 10

e is the element in the 3,2 position (third row, second column) of A.

You can also reference multiple elements at a time by specifying their indices in a vector. For example, access the first and third elements of the second row of A.

r = A(2,[1 3])
r = 1×2 5 7

To access elements in a range of rows or columns, use the colon. For example, access the elements in the first through third row and the second through fourth column of A.

r = A(1:3,2:4)
r = 3×3 2 3 4 6 7 8 10 11 12

An alternative way to compute r is to use the keyword end to specify the second column through the last column. This approach lets you specify the last column without knowing exactly how many columns are in A.

r = A(1:3,2:end)

If you want to access all of the rows or columns, use the colon operator by itself. For example, return the entire third column of A.

r = A(:,3)
r = 4×1 3 7 11 15

In general, you can use indexing to access elements of any array in MATLAB regardless of its data type or dimensions. For example, directly access a column of a datetime array.

t = [datetime(2018,1:5,1); datetime(2019,1:5,1)]
t = 2x5 datetime 01-Jan-2018 01-Feb-2018 01-Mar-2018 01-Apr-2018 01-May-2018 01-Jan-2019 01-Feb-2019 01-Mar-2019 01-Apr-2019 01-May-2019
march1 = t(:,3)
march1 = 2x1 datetime 01-Mar-2018 01-Mar-2019

For higher-dimensional arrays, expand the syntax to match the array dimensions. Consider a random 3-by-3-by-3 numeric array. Access the element in the second row, third column, and first sheet of the array.

A = rand(3,3,3);e = A(2,3,1)
e = 0.5469

For more information on working with multidimensional arrays, see Multidimensional Arrays.

Indexing with a Single Index

Another method for accessing elements of an array is to use only a single index, regardless of the size or dimensions of the array. This method is known as linear indexing. While MATLAB displays arrays according to their defined sizes and shapes, they are actually stored in memory as a single column of elements. A good way to visualize this concept is with a matrix. While the following array is displayed as a 3-by-3 matrix, MATLAB stores it as a single column made up of the columns of A appended one after the other. The stored vector contains the sequence of elements 12, 45, 33, 36, 29, 25, 91, 48, 11, and can be displayed using a single colon.

A = [12 36 91; 45 29 48; 33 25 11]
A = 3×3 12 36 91 45 29 48 33 25 11
Alinear = A(:)
Alinear = 9×1 12 45 33 36 29 25 91 48 11

For example, the 3,2 element of A is 25, and you can access it using the syntax A(3,2). You can also access this element using the syntax A(6), since 25 is sixth element of the stored vector sequence.

e = A(3,2)
e = 25
elinear = A(6)
elinear = 25

While linear indexing can be less intuitive visually, it can be powerful for performing certain computations that are not dependent on the size or shape of the array. For example, you can easily sum all of the elements of A without having to provide a second argument to the sum function.

s = sum(A(:))
s = 330

The sub2ind and ind2sub functions help to convert between original array indices and their linear version. For example, compute the linear index of the 3,2 element of A.

linearidx = sub2ind(size(A),3,2)
linearidx = 6

Convert from the linear index back to its row and column form.

[row,col] = ind2sub(size(A),6)
row = 3
col = 2

Indexing with Logical Values

Using true and false logical indicators is another useful way to index into arrays, particularly when working with conditional statements. For example, say you want to know if the elements of a matrix A are less than the corresponding elements of another matrix B. The less-than operator returns a logical array whose elements are 1 when an element in A is smaller than the corresponding element in B.

A = [1 2 6; 4 3 6]
A = 2×3 1 2 6 4 3 6
B = [0 3 7; 3 7 5]
B = 2×3 0 3 7 3 7 5
ind = A<B
ind = 2x3 logical array 0 1 1 0 1 0

Now that you know the locations of the elements meeting the condition, you can inspect the individual values using ind as the index array. MATLAB matches the locations of the value 1 in ind to the corresponding elements of A and B, and lists their values in a column vector.

Avals = A(ind)
Avals = 3×1 2 3 6
Bvals = B(ind)
Bvals = 3×1 3 7 7

MATLAB "is" functions also return logical arrays that indicate which elements of the input meet a certain condition. For example, check which elements of a string vector are missing using the ismissing function.

str = ["A" "B" missing "D" "E" missing];ind = ismissing(str)
ind = 1x6 logical array 0 0 1 0 0 1

Suppose you want to find the values of the elements that are not missing. Use the ~ operator with the index vector ind to do this.

strvals = str(~ind)
strvals = 1x4 string "A" "B" "D" "E"

For more examples using logical indexing, see Find Array Elements That Meet a Condition.

Related Topics

  • Access Data Using Categorical Arrays
  • Access Data in Tables
  • Structure Arrays
  • Access Data in Cell Array

External Websites

  • Programming: Organizing Data (MathWorks Teaching Resources)
Array Indexing
- MATLAB & Simulink (2024)
Top Articles
Jezebel in the Bible: Her Story and Importance
Meet Jezebel: The Most Wicked Queen of Israel
Rubratings Tampa
Somboun Asian Market
1970 Chevrolet Chevelle SS - Skyway Classics
Terraria Enchanting
biBERK Business Insurance Provides Essential Insights on Liquor Store Risk Management and Insurance Considerations
Wordscape 5832
Restaurants Near Paramount Theater Cedar Rapids
Sony E 18-200mm F3.5-6.3 OSS LE Review
Moviesda3.Com
Spectrum Field Tech Salary
97226 Zip Code
Airrack hiring Associate Producer in Los Angeles, CA | LinkedIn
Robert Deshawn Swonger Net Worth
EASYfelt Plafondeiland
Nz Herald Obituary Notices
Little Rock Skipthegames
Governor Brown Signs Legislation Supporting California Legislative Women's Caucus Priorities
Craiglist.nj
Helpers Needed At Once Bug Fables
Znamy dalsze plany Magdaleny Fręch. Nie będzie nawet chwili przerwy
Striffler-Hamby Mortuary - Phenix City Obituaries
LG UN90 65" 4K Smart UHD TV - 65UN9000AUJ | LG CA
Elanco Rebates.com 2022
Grove City Craigslist Pets
Used 2 Seater Go Karts
Rund um die SIM-Karte | ALDI TALK
Of An Age Showtimes Near Alamo Drafthouse Sloans Lake
Joplin Pets Craigslist
Roto-Rooter Plumbing and Drain Service hiring General Manager in Cincinnati Metropolitan Area | LinkedIn
Craigslist Car For Sale By Owner
SOC 100 ONL Syllabus
Ksu Sturgis Library
Top 25 E-Commerce Companies Using FedEx
South Bend Tribune Online
Frommer's Philadelphia &amp; the Amish Country (2007) (Frommer's Complete) - PDF Free Download
This 85-year-old mom co-signed her daughter's student loan years ago. Now she fears the lender may take her house
Setx Sports
Pa Legion Baseball
COVID-19/Coronavirus Assistance Programs | FindHelp.org
Bekkenpijn: oorzaken en symptomen van pijn in het bekken
20 Mr. Miyagi Inspirational Quotes For Wisdom
The Sports Academy - 101 Glenwest Drive, Glen Carbon, Illinois 62034 - Guide
The Bold and the Beautiful
bot .com Project by super soph
Www Pig11 Net
Enjoy Piggie Pie Crossword Clue
Dietary Extras Given Crossword Clue
Walmart Front Door Wreaths
Tanger Outlets Sevierville Directory Map
Affidea ExpressCare - Affidea Ireland
Latest Posts
Article information

Author: Errol Quitzon

Last Updated:

Views: 5823

Rating: 4.9 / 5 (59 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Errol Quitzon

Birthday: 1993-04-02

Address: 70604 Haley Lane, Port Weldonside, TN 99233-0942

Phone: +9665282866296

Job: Product Retail Agent

Hobby: Computer programming, Horseback riding, Hooping, Dance, Ice skating, Backpacking, Rafting

Introduction: My name is Errol Quitzon, I am a fair, cute, fancy, clean, attractive, sparkling, kind person who loves writing and wants to share my knowledge and understanding with you.