Day of Year to MATLAB date

Version 1.1.0.0 (1,68 KB) von Ashley
Converts a day of year number and a year to a date in MATLAB format
3,8K Downloads
Aktualisiert 22 Mai 2009

Lizenz anzeigen

DOY2DATE.m will convert a vector of day of year numbers and years
and convert them to MATLAB date format.

Sample Call:
doyV = [54;200.4315];
yearV = [2009;2009];
[dateV] = doy2date(doyV,yearV);

Inputs:
doyV -> vector of day of year numbers (n x 1)
yearV -> vector of years (n x 1)

Outputs:
dateV -> vector of MATLAB dates (n x 1)

function [dateV] = doy2date(doyV,yearV)
z = zeros(length(yearV),5);
dv = horzcat(yearV,z);
dateV = doyV + datenum(dv);

Zitieren als

Ashley (2024). Day of Year to MATLAB date (https://www.mathworks.com/matlabcentral/fileexchange/24235-day-of-year-to-matlab-date), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2007a
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Dates and Time finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.1.0.0

fixed typo in title

1.0.0.0