comment

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

関連記事

no image

常用対数、自然対数を外国語で言う方法

常用対数 10を底とする対数のことを、常用対数という。 翻訳 英語 common logarithm 発音:kɑ́mən lɔ́(ː)gərɪ̀ðm 中国語 常用对数 発音:chángyòng duì …

no image

matplotlib でエラーバーを設定する方法

pyplot.errorbar を使って設定する。 オプションの詳細は https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.erro …

no image

python3 でタプルを指定した要素で順に並び替える

タプルを、指定した要素で並び替えることができる。「key=lambda x 」で、引数 x を指定。lambda は無名関数を表す。 例 record = [(‘織田信長’, 1534, 15 …

no image

c++ で文字列(string)の長さを取得する方法

length() で取得する。 例 #include <iostream> #include <string> using namespace std; int main () { str …

no image

tex で無限の記号を入力する

「無限大」を表す記号を入力するには、\inftyを使う。 例 $$\infty , -infty$$ 結果