NFFT / nfft

The official NFFT library repository
https://tu-chemnitz.de/~potts/nfft/
GNU General Public License v2.0
174 stars 45 forks source link

Feature/31 matlab dynamic plan number #53

Closed tvolkmer closed 7 years ago

tvolkmer commented 7 years ago

31 mex files without fixed maximal number of plans, dynamic lazy initialization and increase of array plans[], removed mexLock and mexUnlock after discussion with @michaelquellmalz

mexLock/mexUnlock: The mexUnlock function in cleanup could never be called, since cleanup (mexAtExit) was not called once mexLock was called in mkplan. Moreover, mexLock increments a counter at each call of mkplan which would require an equal number of calls of mexUnlock when a plan is finalized.

tvolkmer commented 7 years ago

Merged.