MATLAB: How to make a file name with combination of two strings

fileMATLABstring

Hi All
How do I make a file name with combination of two strings ? most of the examples I have seen are combination of a file and a number

Best Answer

folder = 'D:\Temp';
str1 = 'aaa'
str2 = 'bbb'
% Alternatives:
name = [str1, str2]
name = strcat(str1, str2)
name = cat(2, str1, str2)
name = horzcat(str1, str2)
name = sprintf('%s%s', str1, str2) % See Stephen's solution
% Creates: C\Temp\aaa\bbb
fullname = fullfile(folder, str1, str2)