Skip to content

Commit bedd65b

Browse files
authored
Merge pull request #155 from noshi91/lagrange-interpolation
ラグランジュ補間の description を修正
2 parents a1d4283 + 32e87bf commit bedd65b

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

_algorithms/lagrange-interpolation.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ changelog:
55
authors: kimiyuki
66
reviewers:
77
date: 2020-07-09T00:00:00+09:00
8+
- summary: 見出し修正
9+
authors: noshi91
10+
reviewers:
11+
date: 2021-04-04T10:58:26+09:00
812
algorithm:
913
input:
1014
output:
@@ -13,9 +17,10 @@ algorithm:
1317
aliases:
1418
level: orange
1519
description: >
16-
Lagrange 補間多項式とは、与えられた点群 $\lbrace (x_i, y_i) \mid i \lt N \rbrace$ をすべて通る ($\forall i \lt N. f(x_i) = y_i$ を満たす) ような最小次数の多項式 $f$ のことである。Lagrange 補間をするとは、この多項式を求めることである。Lagrange 補間は $O(N^2)$ あるいは $O(N \log N)$ で行うことができる。
20+
Lagrange 補間多項式とは、与えられた点群 $\lbrace (x_i, y_i) \mid i \lt N \rbrace$ をすべて通る ($\forall i \lt N. f(x_i) = y_i$ を満たす) ような最小次数の多項式 $f$ のことである。
21+
Lagrange 補間多項式を $\Theta (N \log (N) ^ 2)$ で計算するアルゴリズムが存在する。
1722
draft: true
1823
draft_urls:
1924
---
2025

21-
# Lagrange 補間
26+
# Lagrange 補間多項式

0 commit comments

Comments
 (0)