"표와 테이블 관리"의 두 판 사이의 차이

수학노트
둘러보기로 가기 검색하러 가기
3번째 줄: 3번째 줄:
  
 
==latex 테이블==
 
==latex 테이블==
\begin{array}{c|ccccc}
+
* [[LaTeX 테이블 만들기]]
  & 1 & 2 & 3 & 4 & 5 \\
 
\hline
 
1 & 11 & 12 & 13 & 14 & 15 \\
 
2 & 21 & 22 & 23 & 24 & 25 \\
 
3 & 31 & 32 & 33 & 34 & 35 \\
 
4 & 41 & 42 & 43 & 44 & 45 \\
 
5 & 51 & 52 & 53 & 54 & 55 \\
 
6 & 61 & 62 & 63 & 64 & 65 \\
 
7 & 71 & 72 & 73 & 74 & 75 \\
 
8 & 81 & 82 & 83 & 84 & 85 \\
 
9 & 91 & 92 & 93 & 94 & 95
 
\end{array}
 
  
  
\begin{array}{cc|c|c|c|c|c|}
 
x & x & x & x & x & x & x \\
 
\hline
 
x & x & x & x & x & x & x \\
 
\hline
 
x & x & x & x & x & x & x \\
 
\hline
 
\end{array}
 
  
 
\begin{array}{l|ll}
 
  & \text{deg} & \phi _n\text{(x)} \\
 
\hline
 
0 & 0 & 1 \\
 
1 & 1 & -1+x \\
 
2 & 1 & 1+x \\
 
3 & 2 & 1+x+x^2 \\
 
4 & 2 & 1+x^2 \\
 
5 & 4 & 1+x+x^2+x^3+x^4 \\
 
6 & 2 & 1-x+x^2 \\
 
7 & 6 & 1+x+x^2+x^3+x^4+x^5+x^6 \\
 
8 & 4 & 1+x^4 \\
 
9 & 6 & 1+x^3+x^6
 
\end{array}
 
  
 
==테이블 헤딩==
 
==테이블 헤딩==
 
<code>A := {f[x], g[x]}<br> X := Table[x, {x, 0, 9}]<br> T := Table[A, {x, X}]<br> TableForm[T, TableHeadings -> {X, A}]</code>
 
<code>A := {f[x], g[x]}<br> X := Table[x, {x, 0, 9}]<br> T := Table[A, {x, X}]<br> TableForm[T, TableHeadings -> {X, A}]</code>
 +
  
 
===예===
 
===예===
 
<code> f[x_, y_] := 10 x + y<br> X := Table[x, {x, 1, 9}]<br> Y := Table[y, {y, 1, 5}]<br> Z := Prepend[X, "x\[DescendingEllipsis]y"]<br> A := Table[f[x, y], {x, X}, {y, Y}]<br> Grid[MapThread[Prepend, {Prepend[A, Y], Z}], Frame -> All]<br> Y // TableForm<br> A // TableForm<br> Prepend[A, Y] // TableForm </code>
 
<code> f[x_, y_] := 10 x + y<br> X := Table[x, {x, 1, 9}]<br> Y := Table[y, {y, 1, 5}]<br> Z := Prepend[X, "x\[DescendingEllipsis]y"]<br> A := Table[f[x, y], {x, X}, {y, Y}]<br> Grid[MapThread[Prepend, {Prepend[A, Y], Z}], Frame -> All]<br> Y // TableForm<br> A // TableForm<br> Prepend[A, Y] // TableForm </code>
 +
  
 
==HTML 테이블 얻기==
 
==HTML 테이블 얻기==

2012년 12월 16일 (일) 10:05 판

개요

latex 테이블



테이블 헤딩

A := {f[x], g[x]}
X := Table[x, {x, 0, 9}]
T := Table[A, {x, X}]
TableForm[T, TableHeadings -> {X, A}]


f[x_, y_] := 10 x + y
X := Table[x, {x, 1, 9}]
Y := Table[y, {y, 1, 5}]
Z := Prepend[X, "x\[DescendingEllipsis]y"]
A := Table[f[x, y], {x, X}, {y, Y}]
Grid[MapThread[Prepend, {Prepend[A, Y], Z}], Frame -> All]
Y // TableForm
A // TableForm
Prepend[A, Y] // TableForm


HTML 테이블 얻기

메모

관련된 항목들



매스매티카 파일 및 계산 리소스



사전 형태의 자료