Prev: Super resolution warp/transformtion matrix
Next: Matlab 64 vs 32 bit benchmarking results (on Win XP 64 bit vs Win XP 32 bit SP2)
From: Thomas Vanaret on 12 Jan 2010 05:33 Hi You should have a look to Matlab "who" function. >> list = who returns the list of variables in the workspace as a cell array. You can then find easily the position of a specific variable name in that list by doing : >> ind = find(strcmp(list, 'variable_name')) See also "whos" function |