MATLAB: Label with num2str

num2str

Hello everyone,
I want to use num2str and I actually managed to use it but I faced a very little problem.
xlabel({"effective stress","ID=" num2str(Id)})
When I write this part of code, x label consists of 3 lines;
1:effective stress
2:ID=
3:'the value of Id'
But I need the 2nd and the 3rd lines to appear on the same line. It is a small detail but I need it for my thesis. Can you please help me.

Best Answer

xlabel({'effective stress',['ID=',num2str(Id)]})