comment

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

関連記事

no image

gnuplot で、グラフの境界の一部を非表示にする方法

次のページで書いてあることを参考にする。 http://gnuplot.sourceforge.net/docs_4.2/node162.html bottom=1, left=2, top=4, r …

no image

python3 で、すべて小文字かどうかを判定する方法

islower() 関数を使う。 例 print(‘abcde’.islower()) print(‘abcDe’.islower()) 結果 True False

no image

tex で三角形の合同記号を入力する

\equiv を使う。 例 $\triangle{ABC} \equiv \triangle{DEF}$ 結果

no image

tex でノルムを入力する方法

\| を使う。 例 $\|u\|$ 結果 美味しんぼ(43)【電子書籍】[ 雁屋哲 ]価格:605円(税別、送料別)(2020/12/25時点)楽天で購入

no image

matplotlib で、線の種類を変更する方法

「linestyle = 」として、線の種類を指定することができる設定の詳細は、次のリンクを参照。 https://matplotlib.org/stable/gallery/lines_bars_a …