본문 바로가기

노인과 로봇 노인 문제를 해결에 로봇이 어떻게 도움이 될 수 있을까? 대학국어 A+에 빛나는! 2010년 봄학기 대학국어 소논문 -_-;; https://docs.google.com/document/d/1aCA_oeSeWqOogEmQXR3wAEurchb3FfF_VN8TnLDBiC8/edit?hl=en_US 더보기
using FLDA to classify IRIS data set 1. To do Classify IRIS data set using FLDA and 1 nearest neighborhood classifier 2. Test ResultA raw data 1. using all 4 features 94.6% 2. using 2 features (among 4) 68% B projected data using FLDA 1. using all 4 features a) reduction to d = 4 93.3% b) reduction to d = 2 93.3% c) reduction to d = 1 94.6% 2. using 2 features (among 4) a) reduction to d = 2 74.7% b) reduction to d = 1 77.3% -> FLD.. 더보기
HMM viterbi algorithm 아래의 정의는 wikipedia 에서 (http://en.wikipedia.org/wiki/Viterbi_algorithm) Viterbi algorithm The Viterbi algorithm is a dynamic programming algorithm for finding the most likely sequence of hidden states – called the Viterbi path – that results in a sequence of observed events, especially in the context of Markov information sources, and more generally, hidden Markov models. The forward algorithm is .. 더보기
plot x = 0: 0.1 : 10; y = x; plot(x, y, 'r'); xmin = 0; xmax =10; ymin = 0; ymax =10; axis([xmin xmax ymin ymax]); xlabel('X'); ylabel('Y'); title('plot in Matlab'); 가. 2차원 그래픽 1. 선 그리기 ㄱ. plot: x, y 축에 대한 선형 배율 그래프를 그림, 3차원의 경우 plot3(x,y,z)를 이용. ㄴ. loglog: x, y 축에 대한 log 배율 그래프를 그림 ㄷ. semilogx: x 축에 대해서 log 배율, y축은 선형 배율 그래프를 그림 ㄹ. semilogy: y 축에 대해서 log 배율, x축은 선형 배율 그래프를 그림 ㅁ. plotyy: y축에 대해 양쪽으로 .. 더보기