I am always a little bit paranoid.

Now, I want to know what my co-workers do with my MATLAB when I am not here.

Find (it is not necessary to guess) functions used just before the call to the function and return a cell with the names.

For example:

 a=magic(10);
 b=rot90(a);
 f=find_last_fcn()
 assert(ismember('magic',f))
 assert(ismember('rot90',f))

Can I trust you ?

Solution Stats

65 Solutions

11 Solvers

Last Solution submitted on May 10, 2023

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...