Is it possible to parallelize permpos?

조회 수: 2 (최근 30일)
Jenn Lee
Jenn Lee 2012년 7월 24일
And it does exactly what I want. However, it stalls about when permpos(16,32) is there a way to parallelize this so that it will run faster?

채택된 답변

Jan
Jan 2012년 7월 25일
편집: Jan 2012년 7월 25일
See Answers: generating exhaustive permutations for a list of C-Mex files for the memory efficient creation of large permutations/combinations. If your data have integer values, use an integer type to save memory and run-time.
You can create one permutation after the other without repetitions. See. e.g. FEX: nextperm, but as far as I can see, this does not allow repetitions of the elements.
Other useful submission:
You see, searching the FEX is a good idea.
  댓글 수: 1
Jenn Lee
Jenn Lee 2012년 7월 25일
Thank you very much, I'll look into these

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Walter Roberson
Walter Roberson 2012년 7월 24일
It appears to me that permpos(16,32) would be getting pretty close to the point of filling 32 bits worth of address space (4 Gb). How big do you need to go, and what are you going to do with the output when you get it? Are you using a 64 bit version of MATLAB ?
  댓글 수: 3
Walter Roberson
Walter Roberson 2012년 7월 24일
And generating all of them at once is an efficient algorithm??
Anyhow you did not answer about what size you wanted to go to?
Jenn Lee
Jenn Lee 2012년 7월 24일
Hm, I haven't figured out how big I need to go yet.
I need to be unique, and I'm not sure how to know they are unique unless I have all of the generated at once.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by