randFixedLinearComb​ination

버전 1.1.0.0 (4.95 KB) 작성자: John D'Errico
Uniform random samples over a n-dimensional hyper-rectangle, subject to a linear equality constraint
다운로드 수: 319
업데이트 날짜: 2020/9/11

라이선스 보기

Generation of a uniform random set in n-dimensions subject to a simple sum constraint is nicely handled by Roger Stafford's randfixedsum. But every once in a while, someone wants to sample from a hyper-rectangle, so a set where the bounds are not all the same for each dimension. Or someone might want to sample using some other linear combination of the variables. Then randfixedsum will not suffice, so I decided to write randFixedLinearCombination, which allows a general hyper-rectangle, so you can set any lower and upper bounds. You can also supply a general linear combination. In fact, if you wish to fix one variable to be held constant, you merely set the upper and lower bounds to be the same for that variable.
For example, given the goal to generate 1e7 sets of five uniform random variables, on the hyper-rectangle defined by the set of lower and upper bounds as seen below (variable 4 is fixed at 3). To generate that set took just over 4 seconds.

lb = [-1 0 2 3 -2];
ub = [5 5 3 3 7];
n = 1e7;

tic
X = randFixedLinearCombination(n,12.5,[1 1 1 1 1],lb,ub);
toc
Elapsed time is 4.125535 seconds.

min(sum(X,2))
ans =
12.5

max(sum(X,2))
ans =
12.5

The samples are uniformly distributed over the subspace defined by the constraint plane.

I've tested the code, and will see if I can add a .pdf file as soon as possible to explain the scheme used.

인용 양식

John D'Errico (2024). randFixedLinearCombination (https://www.mathworks.com/matlabcentral/fileexchange/49795-randfixedlinearcombination), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2014b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Applications에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Bug fix

1.0.0.0