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

1 view (last 30 days)
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.

Accepted Answer

KL
KL on 22 Nov 2017
One way is,
your_integer = 3;
number = randsample([-1 1],1)*your_integer

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!