1

day行列から最後のものを取り、その日を見つけるという興味深い問題がありlast monthます。たとえば、今日の日付が 2011 年 10 月 10 日である場合、2011 年 9 月 10 日またはマトリックスで 2011 年 9 月 10 日より前の最初の日を検索しようとします。

マトリックスには複数の ID があり、最終取引日は同じではない場合があります。ベクトル化されたソリューションが必要です。ありがとう!

mat = [
 1000 734507 11 ; 1000 734508 12 ; 1000 734509 13 ; 
 2001 734507 21 ; 2001 734508 22 ; 2001 734513 23 ; 2001 734516 25 ;
 1000 734536 14 ; 1000 734537 15 ; 1000 734538 16 ; 
 2001 734536 26 ; 2001 734537 27 ; 2001 734544 28 ; 2001 734545 29;2001 734546 30
];

% datestr(mat(:,2))
[~,m,~] = unique(mat(:,1), 'rows', 'last') ;
lastDay = mat(m,;) ;

ここで last-month-date を取得するために使用しようとしaddtodateましたが、失敗しました (1 行以上)

各 ID の最終日を取得したら、exact_day_lastmonth を取得する必要があります。この後、この日またはそれに最も近い日 (のはずです< exact_day_lastmonth) のデータを取得する必要があります。

答え:

current_lastdays = [1000 734538 16 ;  2001 734546 30] ; % 4-Feb-2011, 12-Feb-2011
matching_lastmon = [1000 734507 11 ;  2001 734513 23] ; % 4-Jan-2011, 10-Jan-2011
4

1 に答える 1

0

複雑なインデックス付けでかなり大きな配列を危険にさらしたくない場合を除き、ループが道だと思います。

mat = [ 1000 734507 11 ; 1000 734508 12 ; 1000 734509 13 ; 
        2001 734507 21 ; 2001 734508 22 ; 2001 734513 23 ; 2001 734516 25 ;
        1000 734536 14 ; 1000 734537 15 ; 1000 734538 16 ; 
2001 734536 26 ; 2001 734537 27 ; 2001 734544 28 ;2001 734545 29;2001 734546 30];

%# datestr(mat(:,2))
[~,m,~] = unique(mat(:,1), 'rows', 'last') ;
lastDay = mat(m,;) ;

matching_lastmon = lastDay; %# initialize matching_lastmon
oneMonthBefore = datenum(bsxfun(@minus,datevec(lastDay(:,2)),[0,1,0,0,0,0]));

for iDay = 1:size(lastDay,1)
    %# the following assumes that the array `mat` is sorted within each ID (or globally sorted by date)

    idx = find(mat(:,1)==lastDay(iDay,1) & mat(:,2) <= oneMothBefore(iDay),1,'last')

    if isempty(idx)
        matching_lastmon(iDay,2:3) = NaN;
    else
        matching_lastmon(iDay,:) = mat(idx,:);
    end


end
于 2011-10-10T18:45:54.367 に答える