datetime - How to find the first business date of a week in MATLAB? -


we can use fbusdate first business day of month:

date = fbusdate(year, month); 

however, how first business day of week?

as example, during week i'm posting this, monday 09/07/2017 holiday in us:

isbusday(736942) % = 0 

how determine first business day week next day 736943?

i'm not aware of builtin function returns first working day of week, can obtain requesting the next working day after sunday:

busdate(736941); % 736941 = sunday 09/03/2017 

Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -