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

수학노트
둘러보기로 가기 검색하러 가기
(피타고라스님이 이 페이지의 위치를 <a href="/pages/7763844">유용한 코드 모음</a>페이지로 이동하였습니다.)
 
(사용자 2명의 중간 판 19개는 보이지 않습니다)
1번째 줄: 1번째 줄:
<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>
+
==개요==
  
 
 
  
 
+
==latex 테이블==
 +
* [[LaTeX 테이블 만들기]]
  
<h5>개요</h5>
 
  
 
 
  
 
 
  
<h5>코드</h5>
+
==테이블 헤딩==
 +
<code>A := {f[x], g[x]} X := Table[x, {x, 0, 9}] T := Table[A, {x, X}] TableForm[T, TableHeadings -> {X, A}]</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> 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>
  
<h5>메모</h5>
 
  
 
+
==HTML 테이블 얻기==
  
 
+
  
<h5>관련된 항목들</h5>
+
  
 
+
  
 
+
  
 
+
==메모==
  
<h5>사전 형태의 자료</h5>
+
 +
 
 +
 +
 
 +
==관련된 항목들==
 +
 
 +
* [[LaTeX 테이블 만들기]]
 +
 
 +
 +
 
 +
 +
 
 +
==매스매티카 파일 및 계산 리소스==
 +
 
 +
* 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
 +
 
 +
==사전 형태의 자료==
  
 
* http://ko.wikipedia.org/wiki/
 
* http://ko.wikipedia.org/wiki/
37번째 줄: 51번째 줄:
 
* [http://eom.springer.de/default.htm The Online Encyclopaedia of Mathematics]
 
* [http://eom.springer.de/default.htm The Online Encyclopaedia of Mathematics]
  
 
 
 
 
 
 
<h5>관련논문</h5>
 
  
* http://www.jstor.org/action/doBasicSearch?Query=
+
[[분류:목록]]
* http://www.ams.org/mathscinet
+
[[분류:매스매티카]]
* http://dx.doi.org/
+
[[분류:계산 리소스]]

2020년 11월 13일 (금) 23: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 테이블 얻기

메모

관련된 항목들



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

사전 형태의 자료