short and sweet simple question

2 visualizzazioni (ultimi 30 giorni)
andrew
andrew il 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 Commento
Jan
Jan il 22 Nov 2011
+1: This is my question of the week, because it has the cutest subject.

Accedi per commentare.

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Data Type Conversion in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by