論文のたたき台は下記の事項を埋めていくだけでほとんどオートマティックにつくれる。 何回も使うのでメモ。 このメモはnext49氏のブログの抜粋とwikipediaのIMRADの項のまとめ。
ざっくり枠組みを書く。
- Title:
- Author:
論文のたたき台は下記の事項を埋めていくだけでほとんどオートマティックにつくれる。 何回も使うのでメモ。 このメモはnext49氏のブログの抜粋とwikipediaのIMRADの項のまとめ。
ざっくり枠組みを書く。
- Title:
- Author:
| def find_all_files(directory): | |
| for root, dirs, files in os.walk(directory): | |
| yield root | |
| for file in files: | |
| yield os.path.join(root, file) |
| PATH=$PATH:/usr/local/texlive/2015/bin/x86_64-darwin/ | |
| # Aliases | |
| alias ls='ls -G' | |
| alias sublime='open -a Sublime\ Text\ 2' | |
| alias cd='pushd$1 > /dev/null' | |
| alias bd='popd$1 > /dev/null' |
| ffmpeg -i result_example_plot_ncdata_%1d.png output.gif |
| [LASTMSG, LASTID] = lastwarn; | |
| >> warning('off', LASTID) | |
| >> warning on verbose |
| import sys | |
| sys.path.append('/target/path') |
| python -m unittest test_module.TestClass.test_method |
Pythonでのリスト同士の演算は定義されていない。減算を例に挙げると、
x = [10, 20, 100]
y = [10, 15, 90]
x - y
としたとき、