LoginSignup
10
11

More than 3 years have passed since last update.

数学系のリンクや細かいメモ

Last updated at Posted at 2017-02-21

数学を勉強していると記号やら理論やら色々出てくるので、それをまとめておくためのたんなるメモです。(なので随時更新予定)

過去に書いた記事

記号

記号(大文字) 記号(小文字) 読み 意味
Ρ $\rho$ ロー 半径、密度
$\Sigma$ $\sigma$ シグマ 応力、標準偏差、数の和(大文字)
Τ $\tau$ タウ 時定数、時間、トルク
$\Phi$ $\phi$ ファイ 角度、関数、直径
$\Psi$ $\psi$ プサイ 角度、関係
$\Xi$ $\xi$ クサイ 変数
M $\mu$ ミュー 摩擦係数、$10^{-6}$(マイクロ)
N $\nu$ ニュー 振動数

Math関数の実装メモ

frac
function frac(a)
{
    return a - ~~(a);
}
mod
function mod(a, b)
{
    return frac(a / b) * b;
}
smoothMin
function smoothMin(a, b, k)
{
    var h = Math.exp(-k * a) + Math.exp(-k * b);
    return -Math.log(h) / k;
}

SmoothMinのグラフ↓
https://www.desmos.com/calculator/plezbtedio

10
11
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
10
11