MATLAB: Is there a way to save a .mat file with a variable as a filename

MATLABsave

Hello!
I have a variable defined in my workspace.
Example:
sitename =
US-FR2
How could I save a .mat file with this as the filename (US-FR2.mat), without typing it in manually?
Mil gracias

Best Answer

save(sitename);