comment

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

関連記事

no image

std::vector で、vector の要素を erase() で消去する

任意の要素を指定して、 養素を消去することができる。 例 #include <iostream> #include <vector> int main() { std::vector&lt …

no image

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

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

no image

gnuplot で「かけ算記号」を表示する方法

書き出し先(output)のフォーマットを eps 形式にしてから、{/Symbol \264} とすると「かけ算記号」が入力できる。 例 set term post eps enhanced set …

no image

モーリタニアの位置

モーリタニアの位置 在留人数 在留日本人16名(2020年9月現在) 在日モーリタニア人22名(2019年12月現在) (外務省ホームページより) 翻訳 英語 Mauritania 中国語 毛里塔尼亚 …

no image

matplotlib で、矢印を描く方法

arrowprops のパラメータは次を参考にして設定できる。 https://matplotlib.org/stable/api/_as_gen/matplotlib.patches.FancyAr …