Why is it in matlab, that when you type a statement such as
percentage =22
strcat('Transfer is ', num2str(percentage), '% complete');
The result removes the whitespace prior to the numstr() operator... i.e
ans = 'Transfer is23% complete'
Is there a way to prevent it from stealing my whitespace?