if option with weekend and date serial number

조회 수: 2 (최근 30일)
AA
AA 2017년 11월 28일
답변: Walter Roberson 2017년 11월 28일
I have a date serial number x. If the number is a weekend then x+3, if the number is not a weekend then x +1. how can i put this as code?

채택된 답변

Walter Roberson
Walter Roberson 2017년 11월 28일
output = x + 1 + 2 * isweekend( datetime(x, 'convertfrom', 'datenum') );
or
output = x + 1 + 2 * ismember(weekday(x), [1 7]);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by