매트랩에서 그래프에 사용 가능한 특수기호 일람 📂매트랩

매트랩에서 그래프에 사용 가능한 특수기호 일람

available special character in matlab

방법

매트랩에서 각각의 축이 무엇을 의미하는지 나타내기 위해서 그래프에 라벨을 붙일 경우 xlabel, ylabel 을 사용하면 된다. 특수기호를 사용할 수도 있고 볼드체, 이탤릭체 등도 사용할 수 있다.

x=-3*pi:0.2:3* pi;
y=sin(x-pi/6);
plot(x,y);
xlabel('\beta'), ylabel('\nabla f(x)'),;

untitled1.jpg

x=-3*pi:0.2:3* pi;
y=sin(x-pi/6);
plot(x,y);
xlabel('진폭{\bf Volt}'), ylabel('시간{\it sec}{\sl sec}{\rm sec}');

untitled2.jpg

기호 코드 이름 기호 코드 이름 기호 코드 이름
$\alpha$ \alpha 알파 $\beta$ \beta 베타 $\gamma$ \gamma 감마
$\delta$ \delta 델타 $\epsilon$ \epsilon 엡실론 $\zeta$ \zeta 제타
$\eta$ \eta 에타 $\theta$ \theta 세타 $\vartheta$ \vartheta 흘림체 세타
$\iota$ \iota 아이오타 $\kappa$ \kappa 카파 $\lambda$ \lambda 람다
$\mu$ \mu $\nu$ \nu $\xi$ \xi 크시
$\pi$ \pi 파이 $\rho$ \rho $\sigma$ \sigma 시그마
$\varsigma$ \varsigma 흘림체 시그마 $\tau$ \tau 타우 $\upsilon$ \upsilon 웁실론
$\phi$ \phi 파이, 피 $\chi$ \chi 카이 $\psi$ \psi 프사이
$\omega$ \omega 오메가 $\Gamma$ \Gamma 대문자 감마 $\Delta$ \Delta 대문자 델타
$\Theta$ \Theta 대문자 세타 $\Lambda$ \Lambda$ 대문자 람다 $\Xi$ \Xi 대문자 크시
$\Pi$ \Pi 대문자 파이 $\Sigma$ \Sigma 대문자 시그마 $\Upsilon$ \Upsilon 대문자 웁실론
$\Phi$ \Phi 대문자 피 $\Psi$ \Psi 대문자 프사이 $\Omega$ \Omega 대문자 오메가
$\forall$ \forall $\exists$ \exsits $\in$ in
$\surd$ \surd $\cong$ \cong $\approx$ \approx
$\equiv$ \equiv $\Re$ \Re $\Im$ \Im
$\otimes$ \otimes $\oplus$ \oplus $\cup$ \cup
$\cap$ \cap $\subset$ \subset $\supset$ \supset
$\subseteq$ \subseteq $\supseteq$ \supseteq $\lceil$ \lceil
$\rceil$ \rceil $\lfloor$ \lfloor $\rfloor$ \rfloor
$\displaystyle \int$ \int $\perp$ \perp $\wedge$ \wedge
$\vee$ \vee $\langle$ \langle $\rangle$ \rangle
$\neg$ \neg $\sim$ \sim $\cdot$ \cdot
$\times$ \times $\leq$ \leq $\geq$ \geq
$\propto$ \propto $\neq$ \neq $\varnothing$ \0
$\infty$ \infty $\clubsuit$ \clubsuit $\diamondsuit$ \diamondsuit
$\heartsuit$ \heartsuit $\spadesuit$ \spadesuit $\pm$ \pm
$\leftrightarrow$ \leftrightarrow $\uparrow$ \uparrow $\downarrow$ \downarrow
$\rightarrow$ \rightarrow $\leftarrow$ \leftarrow $\circ$ \circ
$\partial$ \partial $\div$ \div $\aleph$ \aleph
$\wp$ \wp $\oslash$ \oslash $\nabla$ \nabla
$\ldots$ \ldots $\prime$ \prime $\mid$ \mid
댓글