[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Octave UPM problem
From: |
Jordi Gutiérrez Hermoso |
Subject: |
Re: Octave UPM problem |
Date: |
Sat, 16 Mar 2013 18:03:21 -0400 |
On 16 March 2013 17:36, rufsiany <address@hidden> wrote:
> In the example below of the UPM version, the matrix is a result of calling
> the "wienrnd" function. Multiplying it by 5 gives strange results:
The UPM version is trying to pointlessly mimic Matlab appearance here.
Octave has a --braindead startup flag for mostly superficial cosmetic
changes that make it look more like Matlab, and UPM is using this
flag. Matlab has a pretty weird default where it shows numbers with a
multiplier. To disable this default, do
fixed_point_format(0);
HTH,
- Jordi G. H.