Matlab中下标,斜体,符号及希腊字母的使用方法
Matlab中下标,斜体,符号及希腊字母的使用方法 reference: http://wenku.baidu.com/view/bf031b92daef5ef7ba0d3cf4.html Example Code: x = [0: 10/12000 :10 - 10/12000]; y = 0.3*sin(x) + 0.5*sin(2*x) + 0.7*sin(4*x); Y = fft(y); Y_abs = abs(Y); w = [0: 2/12000 :1-2/12000]; w =w'; figure;plot(w,Y_abs(1:length(Y_abs)/2)); xlabel('\omega (*\pi rad/sample)'); ylabel('Absolute value of FFT'); title('The fft of the filtered data'); 下面是Matlab官方列出来的Tex代码列表,包含了绝大部分的希腊字母和数学符号。 记得前面加 \ eg: x=0:0.2:2*pi; y=sin(x); plot(x,y);text(2,sin(2),’\alpha_2^\beta') Character Sequence Symbol Character Sequence Symbol Character Sequence Symbol alpha α upsilon υ sim ~ beta β phi Φ leq ≤ gamma γ chi χ infty ∞ delta δ psi ψ clubsuit ♣ epsilon ɛ omega ω diamondsuit ♦ zeta ζ Gamma Γ heartsuit ♥ eta η Delta Δ spadesuit ♠ theta Θ Theta Θ leftrightarrow ↔ vartheta ϑ Lambda Λ leftarrow ← iota ι Xi Ξ uparrow ↑ kappa κ Pi Π rightarrow → lambda λ Sigma Σ downarrow ↓ mu µ Upsilon ϒ circ º nu ν Phi Φ pm ± xi ξ Psi Ψ geq ≥ pi π Omega Ω propto ∝ rho ρ forall ∀ partial ∂ sigma σ exists ∃ bullet • varsigma ς ni ∍ div ÷ tau τ cong ≅ neq ≠ equiv ≡ approx ≈ aleph ℵ Im ℑ Re ℜ wp ℘ otimes ⊗ oplus ⊕ oslash ∅ cap ∩ cup ∪ supseteq ⊇ supset ⊃ subseteq ⊆ subset ⊂ int ∫ in ∈ o ο rfloor ë lceil é nabla ∇ lfloor û cdot · ldots … perp ⊥ neg ¬ prime ´ wedge ∧ times x ∅ rceil ù surd √ mid vee ∨ varpi ϖ copyright © langle ∠ rangle ∠ 下面给出Matlab中下标及希腊字母的使用方法,还有更多的使用方法可以参考matlab帮助
…