24 lines
No EOL
624 B
TeX
24 lines
No EOL
624 B
TeX
\documentclass[11pt,english,francais]{article}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{amsmath} % recommandé pour les mathématiques
|
|
\numberwithin{equation}{section} % pour numéroter les équations selon les sections
|
|
\usepackage{amsfonts} \usepackage{amsthm} \usepackage{thmtools}
|
|
|
|
\begin{document}
|
|
|
|
\begin{equation*}
|
|
\begin{bmatrix}
|
|
0&1&1&0\\
|
|
1&0&1&1\\
|
|
1&1&0&1\\
|
|
0&1&1&0\\
|
|
\end{bmatrix}
|
|
\Longrightarrow_{standardization}
|
|
\begin{bmatrix}
|
|
0&\frac{1}{2}&\frac{1}{2}&0\\
|
|
\frac{1}{3}&0&\frac{1}{3}&\frac{1}{3}\\
|
|
\frac{1}{3}&\frac{1}{3}&0&\frac{1}{3}\\
|
|
0&\frac{1}{2}&\frac{1}{2}&0\\
|
|
\end{bmatrix}
|
|
\end{equation*}
|
|
\end{document} |