datetime型の配列を宣言する方法

12 vues (au cours des 30 derniers jours)
koji fukumoto
koji fukumoto le 16 Oct 2018
Modifié(e) : Kazuya le 16 Oct 2018
非常に初歩的な質問ですみません、 datetime型の配列はどのように宣言するのでしょうか?
for n=1:5
dt(n) = datetime('now'); % 「事前割り当てを検討してください」と警告が出る
end
例えば上記のdtは、datetime型5個分の領域を事前に宣言したいのですが、 zerosやcellでの宣言はエラーになります。

Réponse acceptée

Kazuya
Kazuya le 16 Oct 2018
Modifié(e) : Kazuya le 16 Oct 2018
NaT がその用途に使えますが、、事前割り当てという感じではないですね・・。
dt = NaT(5,1);
for n=1:5
dt(n) = datetime('now'); % 「事前割り当てを検討してください」と警告は出ない
end

Plus de réponses (0)

Catégories

En savoir plus sur 日付と時刻 dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!