표와 테이블 관리
Pythagoras0 (토론 | 기여)님의 2013년 2월 27일 (수) 04:12 판
개요
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 테이블 얻기
메모
관련된 항목들
매스매티카 파일 및 계산 리소스
- https://docs.google.com/leaf?id=0B8XXo8Tve1cxNDYwYTJjNTYtZmJjYi00YmFlLWFmMjktYTVhYzAwNTA0MTdm&sort=name&layout=list&num=50
- http://mathematica.stackexchange.com/questions/11305/how-to-display-equations-without-mathematica-simplifying-them?rq=1