help-octave
[Top][All Lists]
Advanced

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

Re: octave char matrix error


From: Miroslaw Kwasniak
Subject: Re: octave char matrix error
Date: Sun, 11 Jun 2006 19:37:44 +0200
User-agent: Mutt/1.5.9i

On Sun, Jun 11, 2006 at 10:08:50AM +0200, Andrej Kastrin wrote:
> Dear Octave users,
> 
> I load Matlab source file maroce.m from 
> http://www.mathworks.com/matlabcentral/fileexchange/loadFile.do?objectId=10738&objectType=FILE
>  

This code uses language elements not supported by octave.

First you can change  line 337:
  if any(g <= eps(class(g))^(3/4) * max(abs(g)))
to
  if any(g <= eps^(3/4) * max(abs(g))),


reply via email to

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