Filter löschen
Filter löschen

Sub indexing into cells

1 Ansicht (letzte 30 Tage)
Chameleon17
Chameleon17 am 7 Okt. 2015
Bearbeitet: Stephen23 am 7 Okt. 2015
Hello,
I am wondering if anyone can give me any pointers on a topic.
I have a logical vector of true false the same number of rows as my raw matrix.
The raw matrix, I would like to index for the rows that that are true in my logical vector.
The raw matrix is in cell format though and is a big mash of numerical and written data so I can't seem to convert it to another form.
Is there a way for me to pull the rows i'm interested in from this matrix?
Thanks for any help/advice/direction

Akzeptierte Antwort

Thorsten
Thorsten am 7 Okt. 2015
Xnew = X(ind, :);
  3 Kommentare
Thorsten
Thorsten am 7 Okt. 2015
Bearbeitet: Thorsten am 7 Okt. 2015
If it is not logical you have to convert it to logical using
Xnew = X(logical(ind), :);
As help logical reveals,
Because logical arrays are returned by the logical operators (&,|,~)
and the relational operators (==,~=,<,<=,>=,>), as well as by
functions like ANY, ALL, ISNAN, ISINF, ISFINITE, ISEMPTY, ISEQUAL,
etc., it is unusual to need to invoke the logical function itself.
So presumably you have obtained your index by some other operations or did some numerical operation on it, (like minus), which caused Matlab to convert to double.
Chameleon17
Chameleon17 am 7 Okt. 2015
Ah! Yes, thank you, sigh, I should have noticed that.
Thank you! :)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by