Effacer les filtres
Effacer les filtres

How to convert Universal time to Local time?

29 vues (au cours des 30 derniers jours)
Ara
Ara le 26 Déc 2022
Commenté : Ara le 28 Déc 2022
Dear All,
I am trying to convert Universal time to local time. I used this function
% Convert time values to datetime array
timeDatetime = datetime(selectedData(:,3)./3600, 'ConvertFrom', 'epochtime', 'Epoch', '1970-01-01');
% Apply time zone offset to datetime array
timeLocal = tzoffset(timeDatetime, 'EST','5');
but I got an error " Too Many input arguments".
Does anyone knows how to resoolve it?
Thank you,
Ara
  4 commentaires
Steven Lord
Steven Lord le 27 Déc 2022
dt = datetime('now', 'TimeZone', 'local')
dt = datetime
27-Dec-2022 14:55:52
dt.TimeZone
ans = '+00:00'
dt.TimeZone = 'America/New_York'
dt = datetime
27-Dec-2022 09:55:52
dt.TimeZone = 'local'
dt = datetime
27-Dec-2022 14:55:52
Ara
Ara le 28 Déc 2022
Hi Steven,
Thank you for the code but I got thi error:
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To construct matrices, use brackets instead of parentheses.
Would you please tell me how to resolve it?

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 26 Déc 2022
Modifié(e) : Jan le 26 Déc 2022
The command tzoffset accepts one input only:
[dt,dst] = tzoffset(t)
Therefore the additional arguments 'EST','5' are not valid.
Maybe you mean
T = datetime(selectedData(:,3)./3600, ...
'ConvertFrom', 'epochtime', 'Epoch', '1970-01-01', 'TimeZone', 'UTC');
T.TimeZone = 'America/New_York'; % Set accordingly, perhaps 'system'
  3 commentaires
Eric Sofen
Eric Sofen le 27 Déc 2022
That looks like a problem with your conversion from epoch time, but without knowing the values of selectedData, it's hard to know what the appropriate conversion factor should be.
Ara
Ara le 28 Déc 2022
Hi Eric,
Thank you for your comment.
Here is the selected data:
select = ~isMasked & selectElevation & selectPRN ;
selectedData = gpsData{stationId}.data(select,:) ;

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Type Conversion dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by