Advertisement
Guest User

Untitled

a guest
Jul 13th, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. In Matlab, Mosek is used via the matlab mosek toolbox available for download at http://mosek.com
  2. To install on linux 64bit, execute these commands:
  3.  
  4. In the directory opt_interface/mosek :
  5.  
  6. For Mosek v6:
  7. wget http://www.mosek.com/fileadmin/download/stable/6/mosektoolslinux64x86.tar.gz
  8. tar xzf mosektoolslinux64x86.tar.gz
  9.  
  10. In Octave, Mosek is used via a wrapper located in the directory
  11. '...../opt_interface/mosek/mosek_interface/'
  12. The wrapper should be compiled before it can be used. For that, ensure
  13. that the mosek toolbox is downloaded and placed as described above.
  14. Also ensure that the Makefile in the mosek_interface directory uses
  15. the appropriate 'mkoctfile' binary of Octave.
  16. Then execute 'make' to compile it.
  17.  
  18. Set the paths to mosek libraries in opt_license.m
  19. Ensure that the $MOSEKLM_LICENSE_FILE environment variable points to the MOSEK license on your system.
  20.  
  21. Ensure that you include
  22. 1. (...)/opt_interface/mosek/mosek/6/tools/platform/linux64x86/bin
  23. 2. (...)/opt_interface/mosek/mosek/6/toolbox/r2007a
  24. in your LD_LIBRARY_PATH environment variable. Adjust the second, if needed.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement