Olympic puzzle number one
Show older comments
clear = @()disp('Have fun undoing this (:');
Let's solve this challenge and restore the original clear command in as many ways as you find.
3 Comments
John Petersen
on 31 Jul 2012
Edited: John Petersen
on 31 Jul 2012
Would somebody please answer this so I can use clear again? aaaah... Thanks Mike!!
Daniel Shub
on 31 Jul 2012
Jan
on 31 Jul 2012
Accepted Answer
More Answers (4)
Mike Hosea
on 31 Jul 2012
Edited: Mike Hosea
on 31 Jul 2012
3 votes
- builtin('clear','clear')
- You can delete the variable from the workspace window (highlight and press delete or right click and delete).
I look forward to reading some more creative ways.
2 Comments
Daniel Shub
on 1 Aug 2012
I wonder if the workspace window method method can be accessed by a java method from the commandline.
Sean de Wolski
on 31 Jul 2012
clear = rand(1000,500,700);
pack
Daniel Shub
on 31 Jul 2012
Missing from the obvious solutions are:
clear = str2func('clear'); clear();
and
feval('clear');
3 Comments
Sean de Wolski
on 31 Jul 2012
Edited: Sean de Wolski
on 31 Jul 2012
Nice! I would've thought the str2func solution would have recursively called itself.
Mike Hosea
on 1 Aug 2012
If you wanted to leave the rest of the workspace undisturbed it would have been four mentions of "clear":
clear = str2func('clear'); clear('clear');
Daniel Shub
on 31 Jul 2012
1 vote
Somewhat surprisingly the CLEARVARS function is not a solution and gives an unhelpful error message. I think the failure probably qualifies as a bug.
3 Comments
Sean de Wolski
on 31 Jul 2012
clearvars is just a fancy wrapper for evalin with clear.
edit clearvars
Jan
on 31 Jul 2012
Daniel Shub
on 1 Aug 2012
@Sean, my point was that it could be a slightly fancy wrapper that could catch this error
Categories
Find more on Board games 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!