Label with num2str

37 views (last 30 days)
Abdulkadir Genç
Abdulkadir Genç on 12 Aug 2018
Commented: Abdulkadir Genç on 12 Aug 2018
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.

Accepted Answer

Stephen23
Stephen23 on 12 Aug 2018
xlabel({'effective stress',['ID=',num2str(Id)]})
  3 Comments
Stephan
Stephan on 12 Aug 2018
I did not read your question carefully enough and thought you wanted everything in one line. Excuse me.
Best regards
Stephan
Abdulkadir Genç
Abdulkadir Genç on 12 Aug 2018
Thanks for your interest Stephan.
Best regards.

Sign in to comment.

More Answers (0)

Categories

Find more on Data Type Conversion in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!