본문 바로가기

IT

R resources http://www.r-project.org/http://www.cookbook-r.com/ http://www.r-bloggers.com/ http://www.inside-r.org/ http://rseek.org/ http://romainfrancois.blog.free.fr/ http://www.statmethods.net/ 더보기
R http://goo.gl/A3uRsh http://statmethods.net http://goo.gl/M0RQ5z http://proquest.safaribooksonline.com/book/programming/r/9781118448960/chapter-2-essentials-of-the-r-language/c02_sec1_0006_htm#X2ludGVybmFsX0h0bWxWaWV3P3htbGlkPTk3ODExMTg0NDg5NjAlMkY5NzgxMTE4NDQ4OTYwX2VwdWJfY292X2h0bSZxdWVyeT0= http://www.r-project.org/mail.html http://stats.stackexchange.com http://stackoverflow.com 더보기
Maple 강의자료 Maple 9을 중심으로 간단한 소개와 사용방법설명 .mw 파일은 Maple 버전 9이상에서만 open할 수 있음. 더보기
국내 아키텍트 평균 연봉은 6450만원 한국SW아키텍트연합 조사, 올해 가장 주목기술로 'IT융합'꼽아 개발경력 10~15년차 이상인 국내 아키텍트들의 평균 연봉은 6450만원인 것으로 나타났다. 또한 10명 중 6명의 아키텍트들은 올해 가장 관심을 가져야 할 IT 기술로 IT융합을 꼽는 것으로 조사됐다. 16일 한국SW아키텍트연합(KASA)이 삼성SDS, LG CNS 등 주요 IT서비스 업체와 컨설팅 업체들의 팀장급 등 10~15년 개발경력을 갖고 있는 52명의 아키텍트들을 대상으로 조사한 ‘2009년 SW아키텍처 전망 보고서’에 따르면, 국내 아키텍트의 평균 연령은 40~50대가 57.7%, 평균 연봉은 6450만원이며 응답자의 42.3%가 7000만원 이상, 1억원 이상이 7.7%를 차지했다. 또한 2009년 기술 전망과 관련해서는 응답.. 더보기
Friend functions and classes socure: C++ for dummies by Stephen Randy Davis Occasionally, you want a non-member function to have access to the protected members of a class. You do so by declaring the function to be a friend of the class by using the keyword friend. Sometimes, an external function can use direct access to a data member. I know this appears to break the strictly defined, well-sealed-off class interface positi.. 더보기
Virtual function with parameter types different from those of a base class (source: Effective C++, 2E | Item 50 by Scott Meyers) class Base { public: virtual void f(int x); }; class Derived: public Base { public: virtual void f(double *pd); }; Derived *pd = new Derived; pd->f(10); // error! The problem is that Derived::f hides Base::f, even though they take different parameter types, so compilers demand that the call to f take a double*, which the literal 10 most certa.. 더보기
Copy constructor and assignment operator of derived class (source: Effective C++, 2E | Item 16 by Scott Meyers) class Derived: public Base { public: Derived(int initialValue) : Base(initialValue), y(initialValue) {} Derived(const Derived& rhs) // erroneous copy : y(rhs.y) {} // constructor private: int y; }; // correct copy constructor class Derived: public Base { public: Derived(const Derived& rhs): Base(rhs), y(rhs.y) {} ... }; // erroneous assignmen.. 더보기