MatCUTEst
MatCUTEst is a package facilitating the usage of CUTEst in MATLAB on Linux.
N.B.: Using CUTEst in MATLAB on MacOS is not supported anymore as of 2022. See the discussions in CUTEst issue 28.
If you are using MATLAB R2020b or above on Ubuntu 20.04 or above, you should first try the compiled version of MatCUTEst. Do the following only if that version does not work.
First of all, clone this repository to the place where you want MatCUTEst to be installed. You should then get a directory containing this README file. We will refer to this directory as "[the current directory]" in the sequel.
-
Run the following in the terminal under [the current directory]:
bash ./INSTALL
It will install CUTEst and then mexify all the problems, which may take a few hours.
-
After 1, any CUTEst problem can be obtained in MATLAB by
macup(PROBLEM_NAME)
where you have to replace PROBLEM_NAME by a string that is the name of the problem. For example, try
macup('AKIVA')
This should give you a structure containing the full information of problem AKIVA, including its objective function, constraints (if any), starting point, etc. Try
help matcutest
in MATLAB or seemtools/README.txt
for more information.
If you want to use MatCUTEst in GitHub Actions, see the demo. MatCUTEst has been used intensively in the testing and development of PRIMA, where you can find more realistic examples of using MatCUTEst in GitHub Actions.
MatCUTEst is thread-safe. It can be used within
a parfor
loop. Here is an example.
problist = {'AKIVA', 'BOX2', 'ZECEVIC2', 'ZY2'};
parfor ip = 1 : length(problist)
pname = problist{ip};
fprintf('\n%d. Try %s:\n', ip, pname);
p = macup(pname); % make a CUTEst problem
p.objective(p.x0)
decup(p); % destroy the CUTEst problem
end
Citation pour cette source
Zaikun Zhang (2024). MatCUTEst (https://github.com/equipez/matcutest/releases/tag/v1.0), GitHub. Extrait(e) le .
Compatibilité avec les versions de MATLAB
Plateformes compatibles
Windows macOS LinuxTags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Découvrir Live Editor
Créez des scripts avec du code, des résultats et du texte formaté dans un même document exécutable.
mtools
mtools/src
Version | Publié le | Notes de version | |
---|---|---|---|
1.0 |