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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by