フィルターのクリア

How to: Delete nums if before NaN

2 ビュー (過去 30 日間)
Hello kity
Hello kity 2013 年 1 月 30 日
I have the following data (matrix).
I need to delete it if there is only 1 datapoint, 2 or more should stay. so in this example, -12.5 should be deleted.
Matrix=[NaN;NaN;-12.5000000000000;NaN;NaN;-8.90000000000000;-9.20000000000000;NaN;NaN;-9.60000000000000;-9.60000000000000;-9.60000000000000;NaN;]
Condition:
If num - 1 index = NaN and num + 1 = NaN
Delete that row
end
NaN
NaN
-12,5000000000000
NaN
NaN
-8,90000000000000
-9,20000000000000
NaN
NaN
-9,60000000000000
-9,60000000000000
-9,60000000000000
NaN
thank you
  1 件のコメント
Jan
Jan 2013 年 1 月 30 日
編集済み: Jan 2013 年 1 月 30 日
Please provide data such that we can use it by copy&paste for Matlab code. This means surrounding brackets, less trailing zeros and decimal points instead of commas. Thanks.

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

採用された回答

Jan
Jan 2013 年 1 月 30 日
編集済み: Jan 2013 年 1 月 30 日
value = [NaN, NaN, -12.5, NaN, NaN, -8.9, -9.2, NaN, ...
NaN, -9.6, -9.6, -9.6, NaN];
index = strfind(isnan(value), [true, false, true]);
value(index + 1) = [];
[EDITED] Perhaps you need a transpose(value), because strfind requires a row vector.
  1 件のコメント
Hello kity
Hello kity 2013 年 1 月 30 日
編集済み: Hello kity 2013 年 1 月 30 日
thank you
strfind was the function i was looking for :)
really greateful
*edit, it is a column, i look if it is necessary

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by