Skip to content

Commit 0cebcd7

Browse files
committed
linalg : sgn関数の定義でコロンが抜けていた(#1233)
Signed-off-by: Yuya Asano <64895419+sukeya@users.noreply.github.com>
1 parent f44efba commit 0cebcd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/linalg/setup_givens_rotation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ $$
4444
- (1) `a`と`b`の型が`Real`の場合、`s`と`r`の型も`Real`。`r`は$(a, b)^T$のユークリッドノルム、つまり$\sqrt{|a|^2 + |b|^2}$である。
4545
- (2) `a`と`b`の型が`complex<Real>`の場合、`s`と`r`の型も`complex<Real>`。以下で定義される$sgn$関数を用いると、`r`は$sgn(a) * \sqrt{|a|^2 + |b|^2}$である。
4646
$$
47-
sgn(x)=
47+
sgn(x):=
4848
\begin{cases}
4949
\frac{x}{|x|} & \text{($x \neq 0$)} \\
5050
1 & \text{($x = 0$)}

0 commit comments

Comments
 (0)