Filter löschen
Filter löschen

short and sweet simple question

3 Ansichten (letzte 30 Tage)
andrew
andrew am 22 Nov. 2011
I have a cell array called S that looks like: S = [1 x 3 double]; [1 x 3 double]; [1 x 3 double]
and a vector with corresponding rows that looks like: x = [0;1;0]
I'm trying to multiply them so that I only get the vectors within my cell S that corresponds to a 1 in the x vector.
Does anyone know a quick way to do this?
  1 Kommentar
Jan
Jan am 22 Nov. 2011
+1: This is my question of the week, because it has the cutest subject.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 22 Nov. 2011
NewS=S(x)
  2 Kommentare
Walter Roberson
Walter Roberson am 22 Nov. 2011
NewS = S(logical(x));
andrew
andrew am 22 Nov. 2011
Thank you very much!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Multidimensional Arrays 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