comment

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

関連記事

no image

less で文字列を検索する方法:スラッシュ

less some.txt で、ファイルの内容を表示する。 ファイル内 文字列検索 ここで、キーボードの / を押し、検索文字列を入力→ enter ボタンを押す これで、ファイルの内容を検索できる。

no image

tex でオーム記号を入力する方法

siunit のパッケージを使って、\si{\ohm} で入力する。 例 \usepackage{siunitx} \begin{document} \si{\ohm} \end{document} …

no image

matplotlib で折れ線グラフの下部に色をつけて塗りつぶす方法

pyplot の fill_between を使う。 例 from matplotlib import pyplot as plt data_x = [25,26,27] data_y = & …

no image

c++ で文字列が他の文字列を含むか判定する方法

文字列を含むかどうか判定するには、string の find を使う。見つからなかった場合は、std::string::npos を返す。 例 #include <iostream> #i …

no image

matplotlib で、グラフの点の見た目を変更する方法

「marker」で指定すればよい。 次のページを参考に、plotの「marker」を変更する。 https://matplotlib.org/stable/api/markers_api.html 例 …