Tag Archive for 'OpenSUSE'

Octave 3.4.2 on openSUSE 11.4

Finally, the science repository for openSUSE comes with a recent Octave version that supports UMFPACK. Add the corresponding repository

sudo zypper ar http://download.opensuse.org/repositories/science/openSUSE_Tumbleweed/ opensuse:science

and install the package

sudo zypper in octave

You verify that UMFPACK works by the following computation

A=sprandsym(1000,0.01)+eye(1000);b=rand(1000,1);norm(A*(A\b)-b)

which solves a linear system with a sparse symmetric positive definite system matrix A and prints the residual to the console.

Continue reading ‘Octave 3.4.2 on openSUSE 11.4′

Compile Octave on openSUSE 11.3 [Update 2]

Update: The science package for openSUSE contains a recent and working Octave package, see this blog post. It is not necessary to compile your own package.

There is no adequate octave package for openSUSE with SuiteSparse support, therefore one has to compile it manually. The following steps will install all dependencies for Octave 3.2.4, then compile octave, create a rpm package and install it on openSUSE 11.3.

Continue reading ‘Compile Octave on openSUSE 11.3 [Update 2]‘