7. Clearing Variables

>> clear D
>> who
Your variables are:
NRe       ans       mu        rho       v         
>>

>> clear   
>> who
>>
clear Clears all items from memory. Items could be variables or functions.
clear variable1, variable2... will clear the variables specified.