이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
F = factoradic(M,N) returns the conversion of integer M into factorial radix. F is a 1-by-N vector. The factoradic is also known as the Lehmer Code. The factoradic of M is best understood by example.
Example: 89 = 3x4! + 2x3! + 2x2! + 1x1! + 0x0!
therefore factoradic(89,5) = (3,2,2,1,0)
M must lie in the range [0 : N!-1].
Leading zeros will be present in F when M < (N-1)!-1.
Example: factoradic(19,6) = (0,0,3,0,1,0)
A practical use of the factoradic is the generation of permutations. See ONEPERM on the File Exchange.
인용 양식
Darren Rowland (2026). FACTORADIC (https://kr.mathworks.com/matlabcentral/fileexchange/23066-factoradic), MATLAB Central File Exchange. 검색 날짜: .
