SUPPORT UKRAINE
- Your indifference to the act of cruelty can thrive rogue nations like Russia -
タグ
python
を含むブログ一覧
Python Cookbook [Performing Matrix and Linear Algebra Calculations : 行列、線形代数計算の実行]
Published 2020年4月13日19:57 by mootaro23
# Problem:
# 行列の乗算、行列式を求める、一次方程式を解くといった行列および線形代数上の演算を実行したい。
# Solution:
# NumPy ライブラリの matrix オブジェクトを利用します。
# 行列は array オブジェクトと似通っていますが、線形代数学の規則に基づき演算を実行します。
import numpy as np
m = np.matri…
Httpd と mod_wsgi と Django とPython と venv で webサイトを構築してみた
Published 2020年4月13日19:56 by mootaro23
conoha で VPS を借りて、CentOS 8.1 上で Django フレームワークを利用した web サイト構築の勉強をしています。
conohaVPS では、アプリケーションイメージとして Django が提供されているのですが、今回はそれを使用せず、CentOS 以外は自分でインストールをして設定しています。
Python は CentOS 8.1 にシステムインストー…