Can someone please help with following conversion :
Afficher commentaires plus anciens
_ Can someone please help with following conversion : _
t = datetime(731885.75,'ConvertFrom','datenum')
Undefined function 'datetime' for input arguments of type 'double'.
Error in Untitled (line 2)
t = datetime(731885.75,'ConvertFrom','datenum')
Réponse acceptée
Plus de réponses (1)
Walter Roberson
le 12 Juil 2015
1 vote
datetime() was introduced in R2014b; you probably have a version earlier than that.
3 commentaires
Aswas
le 12 Juil 2015
Aswas
le 12 Juil 2015
Modifié(e) : Azzi Abdelmalek
le 12 Juil 2015
Walter Roberson
le 12 Juil 2015
The convention is that the independent variable should go on the x axis and the dependent variable should go on the y axis. Does windspeed lead to a change in time, or does time lead to a change in windspeed?
plot(timeprac, windspeedprac);
title('Wind Speed versus time');
xlabel('time t (HH:MM:SS)');
ylabel('wind speed (km/hr)');
datetick('x', 'HH:MM:SS');
Catégories
En savoir plus sur Time Series Objects dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!