Removing weekends and holidays from a TimeTable
古いコメントを表示
How can one remove weekends and holidays entries from a TimeTable?
Thanks!
採用された回答
その他の回答 (1 件)
Hi!
This works and remove the weekends from a TimeTable, but still gaps showed up on the plot!
TT = TT(~isweekend(TT.Time),:);
1 件のコメント
Walter Roberson
2019 年 4 月 24 日
Yes, this is to be expected. plot() positions elements by relative numeric position, and the relative numeric position of Monday to Monday is 7 days not 5 days.
You could look in the File Exchange for the various "break plot" routines. Or... you could use a time axes that was some kind of relative business days apart measure and adjust the tick labels to the associated dates.
Either way, getting zoom and pan and data tips (datacursor) right is a nuisance
カテゴリ
ヘルプ センター および File Exchange で Calendar についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!