필터 지우기
필터 지우기

Adding or subtracting the same number

조회 수: 4 (최근 30일)
Yi Chuan Xie
Yi Chuan Xie 2020년 10월 31일
답변: Vladimir Sovkov 2020년 10월 31일
Hi, I have a array, for example, [0 0 0 0 ]
And I want each of them to be randomly adding 0.4 or subtracting 0.4
How do I do that?

답변 (1개)

Vladimir Sovkov
Vladimir Sovkov 2020년 10월 31일
n=4; % array length
x=zeros(1,n); % sample array
d=0.4; % value to be added/subtracted
k=rand(1,n); % uniformly random number between 0 and 1
x(k<0.5)=x(k<0.5)-d; % subtraction
x(k>=0.5)=x(k>=0.5)+d; % addition
many other ways are possible

카테고리

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