short and sweet simple question

1 回表示 (過去 30 日間)
andrew
andrew 2011 年 11 月 22 日
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 件のコメント
Jan
Jan 2011 年 11 月 22 日
+1: This is my question of the week, because it has the cutest subject.

サインインしてコメントする。

採用された回答

Fangjun Jiang
Fangjun Jiang 2011 年 11 月 22 日
NewS=S(x)
  2 件のコメント
Walter Roberson
Walter Roberson 2011 年 11 月 22 日
NewS = S(logical(x));
andrew
andrew 2011 年 11 月 22 日
Thank you very much!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by