octave-maintainers
[Top][All Lists]
Advanced

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

octave64 - SGI Itanium - LU function error


From: John W. Eaton
Subject: octave64 - SGI Itanium - LU function error
Date: Thu, 28 Apr 2005 10:32:49 -0400

On 28-Apr-2005, Clinton Chee <address@hidden> wrote:

| I've managed to compile Octave64 on SGI Altix Itanium with Intel Compilers
| 
| However, segmentation fault occurs when doing the following:
| 
| a=[1,2;3,4]
| lu(a)
| 
| John, or anybody who has got octave64 compiled on SGI Intel Itaniums,
| can you verify if you get the seg fault or if it runs OK on your SGI
| Intel Itanium platform.

octave:4> octave_config_info ("USE_64_BIT_IDX_T")
ans = true
octave:5> a = [1,2;3,4];
octave:6> [l,u] = lu (a)
l =

  0.33333  1.00000
  1.00000  0.00000

u =

  3.00000  4.00000
  0.00000  0.66667

octave:7> l*u
ans =

  1  2
  3  4

octave:8> computer
ia64-unknown-linux-gnu
octave:9> octave_config_info ("CC_VERSION")
ans = 3.2.3 20030502 (Red Hat Linux 3.2.3-49)
octave:10> octave_config_info ("CXX_VERSION")
ans = 3.2.3

jwe



reply via email to

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