How to recieve only the negative or the positive of an integer?

1 回表示 (過去 30 日間)
Charis Martakis
Charis Martakis 2017 年 11 月 22 日
コメント済み: Charis Martakis 2017 年 11 月 22 日
I want to get only the negative or positive of a specific integer but randomly each time. For example inside a for loop i want to recieve the number -3 or +3 each time it loops.

採用された回答

KL
KL 2017 年 11 月 22 日
One way is,
your_integer = 3;
number = randsample([-1 1],1)*your_integer
  1 件のコメント
Charis Martakis
Charis Martakis 2017 年 11 月 22 日
thank you a lot !!this totally worked for me :)

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

その他の回答 (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