Matching matrices by time array
1 次查看(过去 30 天)
显示 更早的评论
I have two matrices, one with trade prices and one with bid and offers.
They both have the same first column which is time in seconds (starting at 0.00 UTC time).
What i'd like is to create a new matrix where it gathers these two matrices as [time,price,bid,offer] The two matrices aren't the same size and only a few observations share the same timestamp across both matrices.
So if for example only the price matrix has an observation at a given time i just want the bid and offer cells at that row to be zero or empty. And vice versa.
Hope you understand!
0 个评论
采纳的回答
Kirby Fears
2015-11-20
编辑:Kirby Fears
2015-11-20
What you're describing is an outer join. Try working with tables in Matlab to make this kind of operation easier.
Here is an example with some random data:
prices = rand(100,2); % Time in col 1, price in col 2
bidask = rand(90,3); % Time in col 1, bid col 2, ask col 3
% Convert from arrays to tables
pTab = array2table(prices,'VariableNames',{'Time','Price'});
baTab = array2table(bidask,'VariableNames',{'Time','Bid','Ask'});
% Merge tables together using Time as key
newTab = outerjoin(pTab,baTab,'Key','Time','MergeKeys',true);
Hope this helps.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!