Borrar filtros
Borrar filtros

month number to month name function

31 visualizaciones (últimos 30 días)
mmmm
mmmm el 23 de Abr. de 2020
Editada: Rik el 23 de Abr. de 2020
Create a Matlab function
  4 comentarios
madhan ravi
madhan ravi el 23 de Abr. de 2020
Editada: Rik el 23 de Abr. de 2020
[expletive] why would you do that? So annoying when people do this. So when you ask something online isn’t that obvious that it’ll visible for everyone?? Come on!!
Ameer Hamza
Ameer Hamza el 23 de Abr. de 2020
Name of Original OP: miika k
I am adding this to discourage such spamming behavior.

Iniciar sesión para comentar.

Respuestas (2)

Johannes Hougaard
Johannes Hougaard el 23 de Abr. de 2020
This snippet should do it using existing functions.
month_number = 11;
month_name = datestr(datetime(1,month_number,1),'mmmm');
If you want it as a function just add a function header
function month_name = month_number2name(month_number)
month_name = datestr(datetime(1,month_number,1),'mmmm');

Ameer Hamza
Ameer Hamza el 23 de Abr. de 2020
Editada: Ameer Hamza el 23 de Abr. de 2020
This is one of the option
name = monthName(12);
function name = monthName(num)
name = month(datetime(1,num,1), 'name');
name = name{1};
end
Result:
name =
'December'

Categorías

Más información sobre Graphics Object Programming en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by