0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

いろんなアルゴリズムのテンプレ

Last updated at Posted at 2025-05-04

# 立ち位置・仕様
* いろんなアルゴリズムをコピペできるように記録するのみ
* 最適化が目的でない
* たまにメモとして解説を残す
* 最低限でまとめる
* データを抽出しやすいように個別のIDを付与
* あるアルゴリズムにおいて、他のアルゴリズムが登場する際にはそのIDを付与
* IDは16進数表記
* なるべく最低限なパッケージで実装
* なるべく特殊なオブジェクト型は使用しない

# TargetID
xx.xx.xx.xx

# ReferenceID
xx.xx.xx.xx [bar] https:
xx.xx.xx.xx [bar] https:

# ニュートン・ラフソン法
* 微分可能関数 $f$ が $f(x)=0$の解、つまり根を求めるための反復的手法
* 一元n次方程式で実行可能
```python:
def foo(x):
return x
```

# 使用方法
```python:
x = foo(1)
print(x) # 1
```

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?