"표와 테이블 관리"의 두 판 사이의 차이
둘러보기로 가기
검색하러 가기
Pythagoras0 (토론 | 기여) (→테이블 헤딩) |
Pythagoras0 (토론 | 기여) |
||
(같은 사용자의 중간 판 10개는 보이지 않습니다) | |||
1번째 줄: | 1번째 줄: | ||
==개요== | ==개요== | ||
− | |||
− | + | ==latex 테이블== | |
+ | * [[LaTeX 테이블 만들기]] | ||
+ | |||
+ | |||
+ | |||
==테이블 헤딩== | ==테이블 헤딩== | ||
− | <code>A := {f[x], g[x]} | + | <code>A := {f[x], g[x]} X := Table[x, {x, 0, 9}] T := Table[A, {x, X}] TableForm[T, TableHeadings -> {X, A}]</code> |
− | <code> f[x_, y_] := 10 x + y | + | |
+ | |||
+ | ===예=== | ||
+ | <code> 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 </code> | ||
+ | |||
==HTML 테이블 얻기== | ==HTML 테이블 얻기== | ||
36번째 줄: | 43번째 줄: | ||
* https://docs.google.com/leaf?id=0B8XXo8Tve1cxNDYwYTJjNTYtZmJjYi00YmFlLWFmMjktYTVhYzAwNTA0MTdm&sort=name&layout=list&num=50 | * https://docs.google.com/leaf?id=0B8XXo8Tve1cxNDYwYTJjNTYtZmJjYi00YmFlLWFmMjktYTVhYzAwNTA0MTdm&sort=name&layout=list&num=50 | ||
− | * http:// | + | * http://mathematica.stackexchange.com/questions/11305/how-to-display-equations-without-mathematica-simplifying-them?rq=1 |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==사전 형태의 자료== | ==사전 형태의 자료== | ||
54번째 줄: | 51번째 줄: | ||
* [http://eom.springer.de/default.htm The Online Encyclopaedia of Mathematics] | * [http://eom.springer.de/default.htm The Online Encyclopaedia of Mathematics] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | + | [[분류:목록]] | |
− | + | [[분류:매스매티카]] | |
− | + | [[분류:계산 리소스]] |
2020년 11월 13일 (금) 22:26 기준 최신판
개요
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