Let's suppose you want to profile your MATLAB code, and you want to save the results, for later reviews.
You can use profsave to save the results of the profiler as HTML. You will be able to open the saved results in your browser.
Here is an example of how you can do that, in your MATLAB console:
profile on yourMatlabFunction profile off % The path where you want to store the profiler results, in HTML format results_folder = 'your/path/to/html'; profsave(profile('info'), results_folder)
This will generate html files with the profile for your function and all the functions that are called. There will be one html file for each function. You will be able to navigate by means of hyperlinks, through the function calls.