A kind of dot is sometimes used to represent the sum, mean, or subset of a matrix. What should that symbol be? See the example below:
Asked
Active
Viewed 366 times
1 Answers
3
The symbol you seek is \bullet, and then I just put it in an amsmath aligned environment.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\[
\begin{aligned}
\hat y_{ij} &= \hat\mu +\hat\alpha_i + \hat\beta_j\qquad\qquad
(i = 1,\dots. I \text{~et~} j = 1,\dots,J)\\
&= y_{\bullet\bullet} + (y_{i\bullet} - y_{\bullet\bullet})
+ (y_{\bullet j} - y_{\bullet\bullet})\\
&= y_{i\bullet} + y_{\bullet j} - y_{\bullet\bullet}
\end{aligned}
\]
\end{document}
Steven B. Segletes
- 237,551


$y_{\bullet\bullet} + (y_{i\bullet} - y_{\bullet\bullet})$– Steven B. Segletes Apr 05 '17 at 14:14