Skip to content

Instantly share code, notes, and snippets.

@ceptreee
Created February 11, 2018 01:40
Show Gist options
  • Save ceptreee/debdb62ac484d20f2278bd739bf1cbb9 to your computer and use it in GitHub Desktop.
Save ceptreee/debdb62ac484d20f2278bd739bf1cbb9 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# ギリシャ文字(小文字)\n",
"α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ σ τ υ ϕ χ ψ ω\n",
"\n",
"# ギリシャ文字(大文字)\n",
"Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο Π Ρ Σ Τ Υ Φ Χ Ψ Ω\n",
"\n",
"# 下付き(数字)\n",
"a₀ a₁ a₂ a₃ a₄ a₅ a₆ a₇ a₈ a₉ a₁₀\n",
"\n",
"# 上付き(数字)\n",
"a⁰ a¹ a² a³ a⁴ a⁵ a⁶ a⁷ a⁸ a⁹ a¹⁰\n",
"\n",
"# 下付き(小文字)\n",
"xₐ xₑ xₕ xᵢ xⱼ xₖ xₗ xₘ xₙ xₒ xₚ xᵣ xₛ xₜ xᵤ xᵥ xₓ \n",
"\n",
"# 上付き(小文字)\n",
"xᵃ xᵇ xᶜ xᵈ xᵉ xᶠ xᵍ xʰ xⁱ xʲ xᵏ xˡ xᵐ \n",
"xⁿ xᵒ xᵖ xʳ xˢ xᵗ xᵘ xᵛ xʷ xˣ xʸ xᶻ\n",
"\n",
"# 上付き(大文字)\n",
"xᴬ xᴮ xᴰ xᴱ xᴳ xᴴ xᴵ xᴶ xᴷ xᴸ xᴹ xᴺ xᴼ xᴾ xᴿ xᵀ xᵁ xⱽ xᵂ\n",
"\n",
"# 下付き(ギリシャ文字)\n",
"xᵦ xᵧ xᵨ xᵩ xᵪ\n",
"\n",
"# 上付き(ギリシャ文字)\n",
"xᵅ xᵝ xᵞ xᵟ xᵋ xᶿ xᶥ xᵠ xᵡ \n",
"\n",
"# 上付き(記号)\n",
"x₊ x₋ x₌ x₍ x₎\n",
"\n",
"# 下付き(記号)\n",
"x⁺ x⁻ x⁼ x⁽ x⁾\n",
"\n",
"# アクセント\n",
"x̀ x́ x̂ x̃ x̄ x̅ x̆ ẋ ẍ x̉ x̊ x̋ x̌"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(0, 1, 2)"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"x₀, x₁, x₂ = 0, 1, 2"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4.0"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"σ = 2.0\n",
"σ² = σ^2"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"0.999"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"u = 1.0\n",
"Δt = 0.001\n",
"uₜ = -u\n",
"û = u + uₜ * Δt"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(1, 2, 3, 4)"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"α, β, γ, δ = 1, 2, 3, 4"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 0.6.2",
"language": "julia",
"name": "julia-0.6"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "0.6.2"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment