for i in {0..10};do printf "%02d\n" $i; done
for i in {000..100};do echo $i; done
for i in {000..100};do echo $i; done
...this is a log of code snippets and useful tips I wrote/found. Should you find any mistakes or have any useful suggestions, please do not hesitate to write to me.
parfor ii= 1:4 <statements...> clear('X') % cannot clear: transparency violation <statements...> endAs a workaround, you can free up most of the memory used by a variable by setting its value to empty, presumably when it is no longer needed in your parfor statement:
parfor ii= 1:4 <statements...> X = []; <statements...> end=============