How do I set a text variable The new text is added with the old

4 views (last 30 days)
Hi guys
I have a duplicate and a new text is being generated, how do I add the new to the old?
for n=1:10
ss = n + 'ss';
end
dlmwrite(sprintf(All.txt', n), ss;

Accepted Answer

Atsushi Ueno
Atsushi Ueno on 6 May 2023
> how do I add the new to the old?
ss = [];
for n=1:10
ss = [ss, num2str(n), 'ss'];
end
ss
ss = '1ss2ss3ss4ss5ss6ss7ss8ss9ss10ss'

More Answers (0)

Categories

Find more on Migrate GUIDE Apps 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!