How to insert a line of stars in MATLAB Just a plain simple
How to insert a line of stars in MATLAB? Just a plain simple line that would be present when printed
Solution
disp(\'******************************************************************************************************************\');
>> disp(\'**************************************************************\');
**************************************************************
>> you can use this statement disp in program while printing.
