Prev: Regarding getting pixel information of cursor
Next: matlab code for energy detection spectrum sensing in cognitiveradio using AWGN channel
From: Walter Roberson on 15 Jul 2010 14:07 Carolyn wrote: > case 4 > g_anon = @(vec) [g{1}(vec) g{2}(vec) g{3}(vec) g{4}(vec)]; This might replace the complete switch and so on: g_anon = @(vec) cellfun(@(G) G(vec), g); |