What does // mean in Mathematica?
问题 Examples: In CT = Table[Prepend[10^4*x[range2] /. NDSolve[{...series of equations here...}, {t, range1, range2}, MaxSteps -> 10000, PrecisionGoal -> 11], delay], {delay, delaymin, delaymax, 0.1}]; // Timing what does it mean this // Timing after the semicolon? In Dρ = -I*((H0 + V).ρ - ρ.(H0 + V)) - Γ*ρ // Simplify; And this // Simplify here? I can't find this explanation anywhere! Thanks in advance, Thiago 回答1: This is Mathematica's postfix notation. Basically x//f is the same as f[x] 回答2: