フィルターのクリア

replacing a element of an array and show them in certain way.

1 回表示 (過去 30 日間)
Halsey Hal
Halsey Hal 2021 年 7 月 24 日
コメント済み: John D'Errico 2021 年 7 月 24 日
If i want a output of an array like a=[4 -6 0 2 5 0 -6]. if I want to replace all the values to that are positive to 1 and print like a[0]= 1, a[1]= -6, a[2]= 0, a[3]= 1,..... and so on. what whould be tha code.

回答 (1 件)

Chunru
Chunru 2021 年 7 月 24 日
a=[4 -6 0 2 5 0 -6]
a = 1×7
4 -6 0 2 5 0 -6
a(a>0) = 1;
a
a = 1×7
1 -6 0 1 1 0 -6
  3 件のコメント
Chunru
Chunru 2021 年 7 月 24 日
Try it out yourself first.
John D'Errico
John D'Errico 2021 年 7 月 24 日
@Halsey Hal - Sorry, but Answers is not here to do homework assignments for people. This problem was given to you, so you would spend some time thinking about how to form strings composed of pieces for output, not so you would get the answer written for you online.

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

カテゴリ

Help Center および File ExchangeElementary Math についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by