loadlibrary mfilename put in sub folder
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Thomas Carpenter
il 20 Lug 2015
Commentato: Thomas Carpenter
il 21 Lug 2015
I have a rather large Matlab project (over 100 function files etc.) which I have organised into folders to make it easier to keep track of. The project at its heart has a C DLL which it loads to access some physical hardware. When this is loaded it creates an m file (named through the 'mfilename' option when calling 'loadlibrary'). I would like if possible this m file to be placed in one of the subdirectories not the top level (current) directory.
I tried simply changing the mfilename option to include a relative path but this was completely ignored and the mfile placed in the top directory regardless.
Is there anyway of getting this to happen automatically?
Furthermore, is it possible to get the 'thunk' files to also be placed in a subdirectory to keep things clean?
---
Along similar lines but less importantly, when compiling mex functions, is it possible to specify the output directory for them?
0 Commenti
Risposta accettata
Philip Borghesani
il 21 Lug 2015
The thunk file can be placed anywhere by adding the thunkfilename option with a path to the desired location. The only way to control the placement of the prototype file is to issue a cd command to the desired location first. This guarantees that the location is on the matlab path which is required to run the prototype file. Full path names are supported for the header and dll file names so it should be possible to generate these files in any location. An alternate solution is to copy/move the files after generating them.
Più risposte (1)
Sean de Wolski
il 20 Lug 2015
To your second question, Yes:
web(fullfile(docroot, 'matlab/ref/mex.html'))
Look at the 'outdir' option.
Vedere anche
Categorie
Scopri di più su File Operations in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!