Difference between revisions of "Minfx"

From relax wiki
Jump to navigation Jump to search
Line 15: Line 15:
 
v={{current version minfx}}
 
v={{current version minfx}}
 
# In tcsh: set v={{current version minfx}}
 
# In tcsh: set v={{current version minfx}}
 
wget https://sourceforge.net/projects/bmrblib/files/$v/bmrblib-$v.tar.gz
 
 
  
 
cd $HOME/Downloads
 
cd $HOME/Downloads

Revision as of 11:52, 6 September 2017

The minfx logo.png

The minfx project is a Python package for numerical optimisation, being a large collection of standard minimisation algorithms. The name minfx is simply a shortening of the mathematical expression min f(x).

Install

Guides to install on different systems.

Linux and Mac

Remember to check, if there are newer versions of minfx.
The minfx library can be installed on all UNIX systems by typing:

# Change to bash, if in tcsh shell
bash

v=1.0.12
# In tcsh: set v=1.0.12

cd $HOME/Downloads
wget https://sourceforge.net/projects/minfx/files/$v/minfx-$v.tar.gz
tar -xzf minfx-$v.tar.gz
rm minfx-$v.tar.gz
cd minfx-$v
pip install .

cd ..

From source code

cd path_to/relax

svn co svn://svn.gna.org/svn/minfx/trunk minfx_down
ln -s minfx_down/minfx/ minfx 

# Test
relax -i

Windows

See also