What means ':' in strcat ?

1 view (last 30 days)
Ioannis Vourvachakis
Ioannis Vourvachakis on 21 Sep 2021
Can someone explain me what happens in the code below?
Thank you
j = 1:长度(a)
for k=1:length(b)
c=strcat(a{j},':',b{k});

Answers (1)

Image Analyst
Image Analyst on 21 Sep 2021
It's taking whatever is in a{j} and adding a colon and then whatever is in b{k}. For example if a{j} is 'A1' and b{k} is 'H15' then c would be 'A1:H15'.
1 Comment
Ioannis Vourvachakis
Ioannis Vourvachakis on 21 Sep 2021
aaah, thank you. I expected it more complicated :'(

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!