フィルターのクリア

how to insert 1 in place of inf in a given array

1 回表示 (過去 30 日間)
anshuman mishra
anshuman mishra 2019 年 7 月 28 日
コメント済み: Stephen23 2019 年 7 月 30 日
given array :
Inf 4 2 2 4 Inf
i want my final output satisfy two conditions:
1. insert value 1 wherever Inf is encountered
2.insert value 1 wherever 2 or any number is encountered multiple times consequetively.
final output : 1 0 1 0 0 1
Edit: Thanks a lot,that worked like hot knife on butter :)
i've got another issue:I want to append 1 to start of every array
Ex-: a= [0 1 0 01]
my desired output= [1 0 1 0 0 1]

採用された回答

Rik
Rik 2019 年 7 月 28 日
編集済み: Rik 2019 年 7 月 28 日
You can use the diff function and isinf to make this array.
final= [false diff(array)==0] | isinf(array) ;
  7 件のコメント
Rik
Rik 2019 年 7 月 29 日
The sum function can be used as a shorthand.
Stephen23
Stephen23 2019 年 7 月 30 日

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by