フィルターのクリア

How to assign one variable value to another variable and sort out the variable with a loop?

7 ビュー (過去 30 日間)
Two variables: DataX and Sample Length of the vectors are same [n, 1]. The variable DataX has data values (double) and the variable Sample has 'n' values. The sample variable values are either 0 or 1. The question is, a function needs to be assigned which would hold the data values of DataX and assign to Sample. Furthermore, another array should be defined which would hold the values of DataX and assign the values to the position of Sample which has the value of 1. So, these '1' values with their respective original position containing the data from DataX should be stored in a different array.

採用された回答

Stephen23
Stephen23 2016 年 7 月 14 日
編集済み: Stephen23 2016 年 7 月 18 日
output = DataX(Sample==1)
If you want a full working version:
N = 23;
DataX = randi(9,1,N);
Sample = randi([0,1],1,5);
output = DataX(Sample==1)
  3 件のコメント
Stephen23
Stephen23 2016 年 7 月 18 日
>> S = '00000111110000000111110000000111110000011110000001111';
>> C = regexp(S,'100','match');
>> [C{:}]
ans =
100100100100
automycer
automycer 2016 年 7 月 19 日
Thank you for your reply. I guess regexp works only for string. However in my case S is an array [n,1] and the value return should be of the similar type array with each number at a different position.
Output [12,1]:
1
0
0
1
0
0
1
0
0
1
0
0
Also, if I import big data and the range of zeros I want to select is around 1000-1100 (between the '1s', what looping structure can I use?
Thanks!

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

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 14 日
out=DataX(logical(Sample))

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by