Clear Filters
Clear Filters

extract array from a matrix

12 views (last 30 days)
ADC
ADC on 29 Aug 2018
Commented: ADC on 15 Jan 2019
I need to extract the arrays from a tab that contain an assigned value for instance on the Matrix A take all the rows with contain the value 10 on the first column How Can I Do???

Accepted Answer

Christian Heigele
Christian Heigele on 29 Aug 2018
Logical indexing:
A(A(:,1)==10,:)
That states which rows you want to select: A(:,1)==10 , with A(cond, :) you access all those who are selected.
  1 Comment
ADC
ADC on 15 Jan 2019
very usefull but it doesn't work if for exsample I've the needed to import data like a table...
I got an error when put the operator ==, is there any other way to do it???

Sign in to comment.

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!