Hello! I have an array of data where there are zeros and I need to replace them. How can I do this?
data=[100 95 0 90 0 85 0 0 70 65 ] % as it is
data=[100 95 92.5 90 87.5 85 ] % and so it is necessary
is there a special function in matlab for this?

5 件のコメント

madhan ravi
madhan ravi 2019 年 9 月 2 日
What happened to 0 0 70 65 ??
Lev Mihailov
Lev Mihailov 2019 年 9 月 2 日
I decided not to add them, I thought, and so it will be clear
madhan ravi
madhan ravi 2019 年 9 月 2 日
Provide the complete result for the example provided above, instead of keeping it as a mystery after someone answers.
Lev Mihailov
Lev Mihailov 2019 年 9 月 2 日
Well, actually, I need
data=[2 0 1]
data=[2 1.5 1]
Adam
Adam 2019 年 9 月 2 日
I'm guessing you want to replace 0s with the mean of the values either side of them, but as madhan ravi says, if you cut off a fundamental part of the example it's impossible to know. Replacing individual zeros with the mean of values either side is easy. Replacing zeros when you get multiple of them in a row is a little less clearly defined.

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

 採用された回答

Andrei Bobrov
Andrei Bobrov 2019 年 9 月 2 日
編集済み: Andrei Bobrov 2019 年 9 月 2 日

2 投票

data=[100 95 0 90 0 85 0 0 70 65 ]';
data(data == 0) = nan;
new_data = fillmissing(data,'linear');
or
ii = (1:numel(data));
lo = data ~= 0;
new_data = interp1(ii(lo),data(lo),ii);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeResizing and Reshaping Matrices についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by