フィルターのクリア

ORing of two Cell arrays.

1 回表示 (過去 30 日間)
NDKA
NDKA 2012 年 3 月 16 日
Hi,
I know this may be a basic question. I have two Cell arrays. For example, 'A1' as <1000x1 cell> 'A2' as <1000x1 cell> Now, I'd like to OR both of them in to a single Cell.
like C = A1 | A2;
if A1 = 23, A2 = 56, then I want C = 2356;
Can anyone tell how do I do that?
Thanks
  1 件のコメント
Geoff
Geoff 2012 年 3 月 16 日
That's not what the logical OR operator does. You mean concatenate. Is the data in each array numeric, or is it strings?

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

回答 (3 件)

Walter Roberson
Walter Roberson 2012 年 3 月 16 日
That does not look like "or" to me. That looks like concatenation of decimal numbers.
What if the numbers stored have fractions? What if some of them are negative?
What if some of the cells have strings? Or NaN? Or contain structures? Or contain further cell arrays?
What if the cell arrays are not the same length?

NDKA
NDKA 2012 年 3 月 16 日
All the numbers are not fractions and negative. But, they have strings (i.e. hex values).
Its like
A1 = [23 A1 45 FE 01]
A2 = [23 A1 45 09 FE]
  2 件のコメント
NDKA
NDKA 2012 年 3 月 16 日
in-fact all the numbers in the Cell array's are Hex values and they are of 1 byte size.
Geoff
Geoff 2012 年 3 月 16 日
So you mean it's binary data and you want to interleave it?

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


NDKA
NDKA 2012 年 3 月 16 日
Yes Walter, as you said, its Concatenation. I used the following command, and its working pretty fine for me. Thanks to you.
C = strcat(A1, A2);

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by