수치 미분 Numerical Differentitaion link
f(x) = ax^n f`(x) = anx^(n-1) = df/dx (x) // 구조적으로 미분하는 해석적 방법
하지만 컴터엔 무한소가 없기때문에 수치 미분을 함
df/dx (x) = ( f(x + dx) - f(x) ) / dx // forward differentiation
f(x) = ax^n f`(x) = anx^(n-1) = df/dx (x) // 구조적으로 미분하는 해석적 방법
하지만 컴터엔 무한소가 없기때문에 수치 미분을 함
df/dx (x) = ( f(x + dx) - f(x) ) / dx // forward differentiation
internal static class NativeMethods { | |
public static void PreventSleep() { | |
SetThreadExecutionState(ExecutionState.EsContinuous | ExecutionState.EsSystemRequired); | |
} | |
public static void AllowSleep() { | |
SetThreadExecutionState(ExecutionState.EsContinuous); | |
} |
#include <fstream> | |
#include <iostream> | |
#include <string> | |
#include <locale> | |
#include <codecvt> | |
... | |
// Write file in UTF-8 | |
std::wofstream wof; | |
wof.imbue(std::locale(std::locale::empty(), new std::codecvt_utf8<wchar_t,0x10ffff,std::generate_header>)); |
" ============================================================================= | |
" Miller Medeiros .vimrc file | |
" ----------------------------------------------------------------------------- | |
" heavily inspired by: @factorylabs, @scrooloose, @nvie, @gf3, @bit-theory, ... | |
" ============================================================================= | |
" ----------------------------------------------------------------------------- | |
" BEHAVIOR |