Undefined function 'year' for input arguments of type 'double'. <- on new 64bit pc with 64bit matlab installed

1 visualización (últimos 30 días)
Hi, if we type
MATLAB code
year(735142)
On any of our 32bit boxes we get ans = 2012
But on our new 64bit box we get Undefined function 'year' for input arguments of type 'double'.
Am I missing something silly here?
Cheers,
Tom

Respuesta aceptada

Jan
Jan el 13 de Mzo. de 2012
The function year is contained in the Financial Toolbox, see: Web:doc year. If you did not install this toolbox on the 64 bit system, this function is not available. A work around:
function Y = myYear(D)
V = datevec(D);
Y = V(:, 1);
I do not have the Financial Toolbox. If this code equals the contents of the original year.m by accident, please post this as a comment, such that I can delete this code soon. :-)
  2 comentarios
Jan
Jan el 13 de Mzo. de 2012
Btw, you cannot find this information locally on your computer, because "doc year" is found only, if you have the toolbox installed. But Google finds the documentation on the TMW server for almost all Matlab functions as first match when searching for e.g. "Matlab year".

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by