毎月のマクロ経済データ シリーズがあり、それらを毎週 (毎週月曜日) の回帰分析に使用する予定です。月に 1 回リリースされるデータ ポイントを、新しいポイント リリース以降の日付テンプレート (その月に 4 回) に一致させるにはどうすればよいでしょうか。
for u=2:size(daily,1)
l=find(dailytemplate(u)==monthly)
%# when the monthly date is not equal to my daily template
if isempty(l)
%# I need a clearver code for this part to find the previous release
dailyclose(u)=dailyclose(u-1)
else
dailyclose(u)=monthlyclose(l)
end
end
コメントから更新
以下の月次マクロデータがあります。それらを使用して、毎週の日付をフィードしたいと考えています。たとえば、2012 年 3 月 31 日の時点でM-input
は、 2.7
. したがって、その日付以降の毎週の日付は
W_output=2.7
2012 年 4 月 30 日まで。次に、週次は新しい月次ポイントである にW_output
なります。次の表に、weeklyとmonthlyの例を示します。 2.3
M_input
W_ouput
M_Input
08/06/2012 1.7
30/06/2012 1.7
01/06/2012 1.7
31/05/2012 1.7
25/05/2012 2.3
30/04/2012 2.3
18/05/2012 2.3
31/03/2012 2.7
11/05/2012 2.3
29/02/2012 2.9
04/05/2012 2.3
31/01/2012 2.9
27/04/2012 2.7
31/12/2011 3
20/04/2012 2.7