목록Tips (Utility, Computer Language, and etc.) (201)
감동, 마음이 움직이는 것
#include double dMax = std::numeric_limits::max(); double dMin = std::numeric_limits::min();
This is the library for c/c++ that allows you to work with infinite precision FP arithmetic: https://gmplib.org/ And this is an example of how to know when your arithmetic operation is overflowing or underflowing : #include // Clear previous FP exceptions std::feclearexcept(FE_ALL_EXCEPT); // Perform arithmetic operation long double pc = 1./u; // Retrieve the FP exception (if any) int fp_excepti..
http://www.cyberciti.biz/faq/ls-command-sort-the-output-by-last-modified-time-date/
http://images.google.de/imgres?imgurl=http://images.slideplayer.com/19/5792023/slides/slide_7.jpg&imgrefurl=http://slideplayer.com/slide/5792023/&h=720&w=960&tbnid=s9m0oF_4Mj1rvM:&tbnh=97&tbnw=129&docid=uFBIgrsaP3F1uM&usg=__Ujw4unGnkncibmW1Xjc8oj9Msco=&sa=X&ved=0ahUKEwib5POww77PAhWF1xQKHUwCCvwQ9QEITzAF
http://hplgit.github.io/num-methods-for-PDEs/doc/pub/diffu/sphinx/._main_diffu001.html
For fitting using gnuplot: http://gnuplot.sourceforge.net/docs_4.2/node82.htmlPrint fitting parameter:http://stackoverflow.com/questions/6593134/gnuplot-printing-fit-parameters-automaticallyhttp://gnuplot.sourceforge.net/demo/fit.html sprintf and print functions are in gunplot. a=1 b=1 f(x) = a*x + b ti = sprintf("%.2fx+%.2f", a, b) fit f(x) 'data' using 1:2 via a, b plot [0:3] f(x) t ti, "data"..
There are so many different ways to drow a point.http://www.gnuplotting.org/plotting-single-points/http://stackoverflow.com/questions/19452516/add-a-single-point-at-an-existing-plot (1) Use labelI think the most simple way is usage of empty label.set label at xPos, yPos, zPos "" point pointtype 7 pointsize 2 (2) Use standard input "-"plot '-' w p, '-' w p, '-' w p 1 2 e 1 3 e 2 4 e (3) Use speci..
"awk" calculate only for integer. If you want to calculate float, you have to use "gawk" then it works! Ref) - https://www.gnu.org/software/gawk/manual/html_node/Floating_002dpoint-Programming.html
안녕하세요. 오늘은 sorting하는 법을 포스팅하겠습니다. ㅋㅋㅋ두 가지 방법을 소개하겠습니다.1. 첫 번째는 커맨드에서 sort명령어를 사용하는 거구요.2. 다른 하나는 c++에서 algorithm의 sort함수를 이용한 방법입니다. 1. 커맨드에서 sort 명령어 사용하기많은 분들이 아시겠지만 만약에 제가 test.d라는 파일이 여러 column으로 되어 있고그 중에서 첫 번째 줄에 들어가 있는 데이터크기대로데이터를 다시 정렬하고 싶을 때sort test.d라 해주면 됩니다. 만약 test.d가1 2 54 6 33 4 92 0 1이라고 써져 있으면 sort test.d하면다음과 같이 뿌려 줍니다. 이 내용을 새로운 파일에 써주려면sort test.d > sorted_test.d라고 하면 뿌려지는 내..