Difference between revisions of "Fityk"

From CBLFS
Jump to navigationJump to search
 
Line 96: Line 96:
 
|is the GUI version of the program for nonlinear fitting of analytical functions.
 
|is the GUI version of the program for nonlinear fitting of analytical functions.
 
|}
 
|}
 +
 +
[[Category:Science_Engineering]]

Latest revision as of 11:20, 18 August 2008

Download Source: http://downloads.sourceforge.net/fityk/fityk-0.8.6.tar.bz2

Introduction to Fityk

fityk is a program for nonlinear fitting of analytical functions.

Project Homepage: http://www.unipress.waw.pl/fityk/

Dependencies

Required

Configuration Information

--enable-python enable Python bindings.

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make

Install the package:

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}"./configure --prefix=/usr &&
make

Install the package:

make install

N32

Compile the package:

CC="gcc ${BUILDN32}" CXX="g++ ${BUILDN32}" ./configure --prefix=/usr \
    --libdir=/usr/lib32 &&
make

Install the package:

make install

64Bit

Compile the package:

CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" ./configure --prefix=/usr \
    --libdir=/usr/lib64 &&
make

Install the package:

make install

Configuring

Contents

Installed Directories: /usr/share/fityk
Installed Programs: cfityk, fityk
Installed Libraries: libfityk.{la,so}

Short Descriptions

cfityk is the CLI version of the program for nonlinear fitting of analytical functions.
fityk is the GUI version of the program for nonlinear fitting of analytical functions.