Skip to content

Latest commit

 

History

History
64 lines (47 loc) · 1.94 KB

fancyStuff.md

File metadata and controls

64 lines (47 loc) · 1.94 KB
{
	"date": {
		"y": 23,
		"m": 2,
		"d": 2017
	},
	"tag": ["others"]
}

Fancy Stuff

Physics related

Computer related

File convert/process

  • pandoc: convert among many file format
  • Xpdf: pdf Viewer, can extract text etc.

IDE, Platform, etc.

TeX

Tutorials

Plotting & generating Figure

Mathematica

Matrix related
  • guide/MatricesAndLinearAlgebra
  • useful guide pages:
    • guide/MatrixOperations
    • guide/ConstructingMatrices
    • guide/RearrangingAndRestructuringLists
  • Outer product example:
tmp = Outer[Times, {{1, 0}, {0, 1}}, {{0, 1}, {1, 0}}]
ArrayFlatten[tmp]
  • transpose irregular shaped matrix:
    • PadRight with some variable
    • transpose
    • replace the variable with Sequence[]