comment

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

関連記事

no image

最大サイズを指定して、画像をまとめてリサイズする方法(mogrify コマンド)

imageMagick の mogrify コマンドを使う。 例(*.jpg ファイルを jpeg ファイルにまとめてリサイズする) mogrify -format jpeg -resize 900 …

no image

tex で文章を右寄せにする方法

テキストを \flushright で囲めば良い。 例 \begin{flushright} Lorem, ipsum dolor sit amet consectetur adipisicing e …

no image

duコマンドの使い方。

du コマンドは、ストレージの使用状況を調べるコマンドである。 h オプションをつけると出力結果が human readble になる。 du の h は human の h と覚える ソート 出力結 …

no image

matplotlib の ax でx軸、y軸の端の値を設定する

axes には、set_xlim として定義する。 例 import numpy as np from matplotlib import pyplot as plt x = np.linspace( …

no image

matplotlib で、y軸に二種類の軸を設定する方法

y軸に、2種類のグラフを異なるスケールでプロットする。 matplotlib axes の twinx() を使う。 https://matplotlib.org/stable/api/_as_gen …