source: trunk/src/call_command_clean.m

Last change on this file was 1141, checked in by sommeria, 26 hours ago

smoothig parameter renormalised in filter_tps

File size: 408 bytes
Line 
1%'call_command_clean': call a command with LD_LIBRARY_PATH cleaned
2
3function [status, result]=call_command_clean(command)
4
5paths = strsplit(getenv('LD_LIBRARY_PATH'), ':');
6cc = regexp(paths, 'matlab/');
7new_paths = paths(cellfun('isempty', cc));
8clean_ld_lib_path = strjoin(new_paths, ':');
9
10[status, result] = system(['OMP_NUM_THREADS=1 LD_LIBRARY_PATH=' clean_ld_lib_path ' ' command ' &'], '-echo');
11end
Note: See TracBrowser for help on using the repository browser.