목록전체 글 (512)
감동, 마음이 움직이는 것
set t pdfcairo enh colorset output 'fit.pdf' f(x) = a*exp(-x/b)set log y set xlab 't'set ylab 'K'do for [i=1:30] {a=300 #적당한 값으로 정해준다.theta = 0.01*iinput = sprintf('data/K_t%g.txt',theta)fit[:] f(x) input u 1:2 via a, bplot input u 1:2 w l lw 2 t '' , f(x) lw 2 t '' }
j-th column을 추출하고 싶다면arr[:,j] 를 사용하면 된다.
1. 2주에 한 번씩은 보스와 미팅을 가질 것. - 대략 한달에 두 번2. 토의중에 언성이 높아지면서 여성의 발언권이 줄어드는 것 같다. 어떻게 해야 할까. 3. 독일에서는 아프면 일단 집에서 이틀을 쉰다음에 병원에 가서 아팠다는 걸 증명할 처방을 받아올 수 있다. 그러니 아프면 오지마라. 병이 전파될 수 있다.
https://groups.google.com/forum/#!topic/comp.graphics.apps.gnuplot/sLPQ-KeKkWc 해결방법: Only set log scale for x and y: set log xy
import fnmatch flist = fnmatch.filter(os.listdir(dirpath), name)dirpath에 원하는 폴더의 path를 지정해주면 된다.
import numpy as npzeroidx = np.where(norm
//Read file and gives the number of rows and columns// is needed for istrigstrem #include #include #include #include using namespace std; void Count_row_col(char* fname, int* row, int* col){int N = 0;ifstream in(fname);string unused;string s;while ( getline(in, unused) ){if(N==1) { s=unused;}++N;}*row = N;istringstream iss(s);int columns = 0;while(iss) {string subs; iss >> subs; if(subs.length()..
It seems obvious thatsurge 밀려들다.lowering the riskilluminatestem from entail - The job entails a lot of hard work. (수반하다)endogenous 내인성akin to - What he felt was more akin to pity than love. (~에 더 가까운)to shed further light on …에 해결의 빛을 던지기 위해; [일]을 보다 분명하게 하기 위해, 해명[설명]하기 위해inevitably더 비교급 주어 동사, 더 비교급 주어 동사 The more you laugh, the prettier you get.
https://en.wikipedia.org/wiki/Pearson_correlation_coefficient
https://stackoverflow.com/questions/23973595/setting-common-colorbox-for-all-graphs-in-multiplot-in-gnuplot 먼저 unset colorbox로 개별 그림에 들어가는 작은 colorbox를 지워준다. 그 다음 매뉴얼세팅으로 colorbox를 지정해준다. unset colorboxsplot './data.txt' u 2:(1/$6):12:(3) pt 6 ps variable lw 4 lt palette t ''splot './data.txt' u 3:(1/$8):13:(3) pt 8 ps variable lw 4 lt palette t ''set colorbox user origin 0.9,0.13 size 0.03,0.8 ..