78d04f1seqlab: write and view pulseq MRI sequences in the browserJeremy Magland 1function [supported_rf_use, short_rf_use] = getSupportedRfUse()
2% auxilary function
4supported_rf_use={'excitation','refocusing','inversion','saturation','preparation','other','undefined'};
5if nargout>1
6 short_rf_use=cell2mat(cellfun (@(x) x(1),supported_rf_use,'un',0));
7end
9end