"골레이 코드 (Golay code)"의 두 판 사이의 차이
둘러보기로 가기
검색하러 가기
수학용어번역==
Pythagoras0 (토론 | 기여) 잔글 (찾아 바꾸기 – “<h5>” 문자열을 “==” 문자열로) |
Pythagoras0 (토론 | 기여) 잔글 (찾아 바꾸기 – “</h5>” 문자열을 “==” 문자열로) |
||
1번째 줄: | 1번째 줄: | ||
− | ==이 항목의 수학노트 원문주소 | + | ==이 항목의 수학노트 원문주소== |
* [[골레이 코드 (Golay code)]] | * [[골레이 코드 (Golay code)]] | ||
7번째 줄: | 7번째 줄: | ||
− | ==개요 | + | ==개요== |
13번째 줄: | 13번째 줄: | ||
− | ==Golay code | + | ==Golay code== |
# Clear[n, k, x, y, A, B, G, H, V, hw, md, W, Gex, Vex, hwex, mdex, Wex]<br> n := 23<br> k := 12<br> (*F2[k] is a set of all row vectors in k-tuples*)<br> F2[k_] := Tuples[{0, 1}, k]<br> (*matrix for systematic form representation*)<br> c5 := {1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0};<br> MG := Table[RotateRight[c5, n], {n, 0, 10}]<br> AppendTo[MG, {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}];<br> A := Transpose[MG] | # Clear[n, k, x, y, A, B, G, H, V, hw, md, W, Gex, Vex, hwex, mdex, Wex]<br> n := 23<br> k := 12<br> (*F2[k] is a set of all row vectors in k-tuples*)<br> F2[k_] := Tuples[{0, 1}, k]<br> (*matrix for systematic form representation*)<br> c5 := {1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0};<br> MG := Table[RotateRight[c5, n], {n, 0, 10}]<br> AppendTo[MG, {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}];<br> A := Transpose[MG] | ||
23번째 줄: | 23번째 줄: | ||
− | ==weight enumerator | + | ==weight enumerator== |
* <math>x^{24}+759 x^{16} y^8+2576 x^{12} y^{12}+759 x^8 y^{16}+y^{24}</math> | * <math>x^{24}+759 x^{16} y^8+2576 x^{12} y^{12}+759 x^8 y^{16}+y^{24}</math> | ||
31번째 줄: | 31번째 줄: | ||
− | ==역사 | + | ==역사== |
42번째 줄: | 42번째 줄: | ||
− | ==메모 | + | ==메모== |
52번째 줄: | 52번째 줄: | ||
− | ==관련된 항목들 | + | ==관련된 항목들== |
58번째 줄: | 58번째 줄: | ||
− | <h5 style="margin: 0px; line-height: 3.428em; color: rgb(34, 61, 103); font-family: 'malgun gothic',dotum,gulim,sans-serif; font-size: 1.166em; background-position: 0px 100%;">수학용어번역 | + | <h5 style="margin: 0px; line-height: 3.428em; color: rgb(34, 61, 103); font-family: 'malgun gothic',dotum,gulim,sans-serif; font-size: 1.166em; background-position: 0px 100%;">수학용어번역== |
* 단어사전<br> | * 단어사전<br> | ||
76번째 줄: | 76번째 줄: | ||
− | ==사전 형태의 자료 | + | ==사전 형태의 자료== |
* http://ko.wikipedia.org/wiki/ | * http://ko.wikipedia.org/wiki/ | ||
86번째 줄: | 86번째 줄: | ||
− | ==매스매티카 파일 및 계산 리소스 | + | ==매스매티카 파일 및 계산 리소스== |
* https://docs.google.com/file/d/0B8XXo8Tve1cxY21Hc2Q3X25rbzQ/edit | * https://docs.google.com/file/d/0B8XXo8Tve1cxY21Hc2Q3X25rbzQ/edit | ||
108번째 줄: | 108번째 줄: | ||
− | ==리뷰논문, 에세이, 강의노트 | + | ==리뷰논문, 에세이, 강의노트== |
116번째 줄: | 116번째 줄: | ||
− | ==관련논문 | + | ==관련논문== |
* http://www.jstor.org/action/doBasicSearch?Query= | * http://www.jstor.org/action/doBasicSearch?Query= | ||
126번째 줄: | 126번째 줄: | ||
− | ==관련도서 | + | ==관련도서== |
* 도서내검색<br> | * 도서내검색<br> | ||
** http://books.google.com/books?q= | ** http://books.google.com/books?q= | ||
** http://book.daum.net/search/contentSearch.do?query= | ** http://book.daum.net/search/contentSearch.do?query= |
2012년 11월 1일 (목) 10:36 판
이 항목의 수학노트 원문주소
개요
Golay code
- Clear[n, k, x, y, A, B, G, H, V, hw, md, W, Gex, Vex, hwex, mdex, Wex]
n := 23
k := 12
(*F2[k] is a set of all row vectors in k-tuples*)
F2[k_] := Tuples[{0, 1}, k]
(*matrix for systematic form representation*)
c5 := {1, 1, 0, 1, 1, 1, 0, 0, 0, 1, 0};
MG := Table[RotateRight[c5, n], {n, 0, 10}]
AppendTo[MG, {1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}];
A := Transpose[MG]
weight enumerator
- \(x^{24}+759 x^{16} y^8+2576 x^{12} y^{12}+759 x^8 y^{16}+y^{24}\)
역사
메모
- Math Overflow http://mathoverflow.net/search?q=
관련된 항목들