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

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

[Octave-bug-tracker] [bug #32980] OpenGL plotting backend uses single pr


From: M Kater
Subject: [Octave-bug-tracker] [bug #32980] OpenGL plotting backend uses single precision, not double
Date: Thu, 25 Oct 2018 04:04:09 -0400 (EDT)
User-agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0

Follow-up Comment #27, bug #32980 (project octave):

A possible Workarount is to subtract the Year 2000 from the date like in the
following code:


  %Get file and path
  [file,path]= uigetfile ();
  %Read file
  impDaten=csv2cell(strcat(path,file));
  
  %Read Zime and Date
  zeit = impDaten(2:end,2);  
  Zeit=datenum(cell2mat(zeit),'dd/mm/yyyy HH:MM:SS');
  Zeit=Zeit-730485; %Big dates makes truble. Use the year 00xx. 
 
  %in zeit is the original time / date
  %in Zeit is the substracted time / date. 
  %in the plots only display the date in the following format:
  datestr(Zeit(1),'dd.mm.yy') %without time
  datestr(Zeit(1),'dd.mm.yy HH:MM:SS.FFF') %with time



    _______________________________________________________

Reply to this item at:

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

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




reply via email to

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