The Fourier transform (see the documentation in the R2015a version of fft (link) for a more understandable explanation) takes a time-domain signal as its input and converts it to a frequency-domain representation. If you have a frequency in your time-domain signal of 1 kHz for example, the Fourier transform of it will show that as a triangle with a narrow base centred at a frequency of 1 kHz. In a real-world sampled signal, the process of sampling introduces some nonlinearities, so the signal will never be a single vertical line, although in a pure signal it will be close. (The length of your original signal determines the minimum frequency resolution of the Fourier-transformed signal, and you can increase the frequency resolution by zero-padding your signal.) To address your specific questions:
- firstly, how to interpret the results of FFT and the spectrogram
The frequencies of your original time-domain signal will appear as magnitudes at those frequencies in the Fourier-transformed signal. The spectrogram calculates short Fourier transforms on successive sections of your signal (not the entire signal), and presents them as the frequency content of your signal over that time interval. (That is the short explanation. There are many ways to overlap, add, and window the Fourier transform of the individual segments. I refer you to the documentation for a full description, and any comprehensive book on signal processing for a full discussion.)
- second, why must signal be multiplied by hanning window
It does not have to be, and I do not window the fft in my calculations, since I want to see the entire frequency content, although it is useful in the spectrogram function. The windows act as selective filters that minimise the effect of the sampling process (truncation of an infinite series), giving a smoother result. There is an advantage to using them, but it is not necessary to use them.
- third, what is the purpose of excluding Nyquist point
The Nyquist frequency is the highest uniquely-resolvable frequency in any sampled signal. There is no reason to represent any frequencies above it. (The reason is actually much more involved. Data acquisition hardware include hardware filters eliminating all frequencies above the Nyquist frequency from the analog-to-digital converter to avoid ‘aliasing’ that would result in frequencies above the Nyquist frequency from erroneously appearing in the sampled signal. I refer you to analogue and discrete signal processing textbooks for a full discussion.)
- lastly, the purpose of the spectrogram
It calculates the frequency content of the signal over a short time span and displays it as the frequency spectrum as a function of time. For signals with time-varying frequency content, it presents important information.
NOTE — This is a very short discussion of a very detailed topic. Please take the time to read a good signal processing textbook — and preferably take courses in analog and discrete signal processing — to understand them in necessary detail.