Debugging mapreduce functions in MATLAB
Show older comments
Hi everyone,
I am trying to debug the standard MapReduce examples of matlab to get a better understanding of the concept. There is also a Mathworks description how to do it http://de.mathworks.com/help/matlab/import_export/debug-mapreduce-algorithms.html. But if I follow the instructions and set the breakpoint and then execute MaxMapReduceExample; the program won't stop. So I can't run the programm line by line. This Problem also arises in other algorithms. But when I write a script and put some breakpoints directly in this script, the execution stops appropriately.
What kind of problem is this? And how can I fix it? Thanks for your time!
1 Comment
vthuongt
on 5 Aug 2015
Accepted Answer
More Answers (1)
Sean de Wolski
on 5 Aug 2015
Do you have a:
clear all
At the top of your script? This clears break points. Replace it with just:
clear
1 Comment
Categories
Find more on MapReduce in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!