octave-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Octave-bug-tracker] [bug #59201] [octave forge] (financial) month funct


From: anonymous
Subject: [Octave-bug-tracker] [bug #59201] [octave forge] (financial) month function doesn't work like day or year
Date: Tue, 29 Sep 2020 11:56:11 -0400 (EDT)
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:80.0) Gecko/20100101 Firefox/80.0

Follow-up Comment #1, bug #59201 (project octave):

This is to paraphrase what OP is reporting:


day (now + (1:800)) # gives the day of the month for the next 800 days, as a
COLUMN vector
month (now + (1:800)) # gives an error internal to month
year (now + (1:800)) # gives the year for the next 800 days as a ROW vector


The error in month() is because of lines 39 and 40, where num is a column
vector that is being concatenated with str in a form that only allows
scalars:

  num = datevec (varargin{:})(:,2);
  str = datestr ([0 num 0 0 0 0], "mmm");



    _______________________________________________________

Reply to this item at:

  <https://savannah.gnu.org/bugs/?59201>

_______________________________________________
  Message sent via Savannah
  https://savannah.gnu.org/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]