comment

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

関連記事

no image

c言語 ターミナル上で出力した文字列の表示を初期化する

エスケープシーケンス \033[2J と\033[u を使う。 例 #include <unistd.h> #include <stdio.h> int main() { in …

no image

SI単位系

メートル、秒、キログラム を基本の単位として使うような単位系のこと。 翻訳 英語:International System of unitsmetric system 中国語:国际单位制 発音guój …

no image

tex で積分範囲の位置を調整する方法

\int に \limits を書くと、積分範囲の位置を少し上下に移動させることができる。 例 $$\int\limits_{a+b}^{c+d} f(x) dx$$ $$\int_{a+b}^{c+ …

no image

matplotlib で、凡例を表示する位置を変更する方法

凡例(legend)の表示位置を変更するには、axis の legend の loc を設定する。 次のリンクhttps://matplotlib.org/stable/api/_as_gen/mat …

no image

tex で期待値記号を入力する方法

\mathbf を使う。 例 $\mathbf{E}(\xi)$ 結果