Combine values of a variable to make new variable

2 vues (au cours des 30 derniers jours)
C G
C G le 7 Avr 2018
I think this is something that Matlab should be able to do, but for some reason I cannot find anything that will allow me to do this.
What I need is to combine the values in three variables to make a new variable. For example, y=2012, m=10, d=10. I want a new variable dttm=20121010 or ymd, with the format as in YYMMDD, so single digits need to have a leading zero. The variable will be part of a filename for a separate program that requires all digits to be 2 digits, hence the redefining of y to YY.
This is what I have so far and obviously, it isn't working. The loop works fine. Please help. Thank you in advance.
[y, m, d,] = datevec(startdaytime,'yyyymmddHH');
if y>=2000
YY = (y-2000);%('%02.0f');
else y<=1999;
YY = (y-1900);
end
dttm = (YY+m+d,'%02.0f %02.0f %02.0f')
P.S. Before you ask, yes I know Matlab doesn't like leading zeros. Just go with it.
  1 commentaire
C G
C G le 7 Avr 2018
If you have noticed, I have asked several questions in the past few weeks. I am in the middle of creating a new Matlab function by translating IDL code into Matlab code. Hence, some of the more random questions.
If anyone is interested in helping me translate many pages of IDL code into Matlab code, please let me know.

Connectez-vous pour commenter.

Réponse acceptée

Gayatri Menon
Gayatri Menon le 10 Avr 2018
Hi,
Hope the below code helps.
DateString = '28.03.2005';
formatIn = 'dd.mm.yyyy';
[y, m, d]=datevec(DateString,formatIn)
if y>=2000
YY = (y-2000);%('%02.0f');
else y<=1999;
YY = (y-1900);
end
m_new = sprintf('%02d', m);
d_new = sprintf('%02d', d);
YY_new = sprintf('%02d', YY);
out=strcat(YY_new,m_new,d_new);
Thanks

Plus de réponses (0)

Catégories

En savoir plus sur Programming 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