Scilab 5.4.0
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
weekday
曜日を返す
呼び出し手順
[N,S] = weekday(D) [N,S] = weekday(D, form)
説明
[N,S] = weekday(D) は, 日数 n または日付文字列Dで指定すると, 数値(N) および文字列(S)形式で曜日を返します. 入力引数 D は,日数の配列で複数の日を表すことができます.
[N,S] = weekday(D, form) は, 数値(N) および文字列(S)形式で曜日を返しますが, S の内容は form 引数に依存します. form が 'long'の場合, S には完全な曜日 (例: Thuesday)が含まれます. form が 'short'の場合, S には短縮形 (例: Tue) が含まれます.
例
today = datenum(); [N,S] = weekday(today) [N,S] = weekday(today,'short') [N,S] = weekday(today,'long')
Report an issue | ||
<< toc | Time and Date | Output functions >> |