본문 바로가기

"classify" in Matlab classifyDiscriminant analysis Syntaxclass = classify(sample,training,group) class = classify(sample,training,group,'type') class = classify(sample,training,group,'type',prior) [class,err] = classify(...) [class,err,POSTERIOR] = classify(...) [class,err,POSTERIOR,logp] = classify(...) [class,err,POSTERIOR,logp,coeff] = classify(...) Descriptionclass = classify(sample,training,group) classifies ea.. 더보기
Linear Discriminant Analysis (LDA) http://matlabdatamining.blogspot.com/2010/02/principal-components-analysis.html Linear Discriminant Analysis (LDA) Overview Linear discriminant analysis (LDA) is one of the oldest mechanical classification systems, dating back to statistical pioneer Ronald Fisher, whose original 1936 paper on the subject can be found online (for example, here). The basic idea of LDA is simple: for each class to .. 더보기
Rat Brain Robot The world FIRST CYBORG ROBOT controlled by brain of an actual rat. from FOX News Awesome and Awful. 더보기
Periodic command in Linux (top 명령어는 이제 그만) If you want to do periodic command in Linux (ie. monitoring resources), using "csh" will be your choice. 1. First get "csh" by typing # apt-get install csh 2. Then type csh # csh 3. Type like below # while 1 ? cat /proc/sched_debug ? sleep 3 ? end 4. Done, you'll see what your CPUs are doing. 5. You can simply get out of csh by typing "exit". 위와 같이 할 경우 top 명령어를 안써도 된다 sched_debug를 modify해서 내가 원.. 더보기