I am new to HMM but I have gone through enough literature. I am working on a project in which I will be predicting rainfall using atmospheric parameters.
I have four observable characteristics of the atmosphere (humidity, temperature, wind, sea level height) for 10 years. I have also rainfall amount data with me.
As per I can understand, for each day a weather state will be specified on the basis of the spatial rainfall. So here goes the question. Lets suppose I have data for 100 days.
Rainfall = { 1,2,3,4... 100}. So if I want to generate weather states what should I do?
Lets suppose
temperature = { 30 to 45, some kind of distribution }
humidity = { 25 to 80 }
wind = { 60 to 100 }
sea level height = { 35 to 90 }
How to find
- P(X_0) Initial parameter,
- P(X_t|X_t-1) state transition matrix,
- P(Y_t|X_t) dependence of observation on state
Do I need some clustering for generating states?
I am coding it in MATLAB.
You can come with your example or any source which can explain the procedure to implement in program.