Deleting a certain base variable, from a function

1 view (last 30 days)
I'm writing a program with user inputs, split into sub functions, I want to be able to redo a certain part of the program, without running the whole program again.
At the start of the sub function I'd like to delete the previous set variable, which is a matrix array. But clear x, clearvars x doesn't work for me :(
Any ideas?
Thanks in advance!

Answers (1)

Walter Roberson
Walter Roberson on 23 Apr 2014
evalin('base', 'clear x');

Categories

Find more on Debugging and Analysis 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!