How to add newline to x label of a plot ?
Show older comments
How do I add a new-line to the x label of a plot ? Like i want it to be
Label A \newline
Label B
Accepted Answer
More Answers (2)
Jose Rego Terol
on 30 Jan 2020
I tried this but I got an error.
xlabel({'Time (s)';'foot-Spike:' num2str(fs)})
Error using vertcat
Dimensions of arrays being concatenated are not consistent.
Error in spikes_detection_listdlg (line 36)
xlabel({'Time (s)';'foot-Spike:' num2str(fs)})
How can I include num2str within curly braces?
2 Comments
Walter Roberson
on 30 Jan 2020
xlabel({'Time (s)'; ['foot-Spike:' num2str(fs)]})
Jose Rego Terol
on 30 Jan 2020
Works! Thanks!
Naman Shantha KUMAR
on 27 Nov 2020
I wanted to implement the same in for loop, the below method worked for me;
xlabelname = {}
for ii = 1:10
...
xlabelname{ii,1} = strcat('plot',num2str(ii));
end
Hope it helps if someone is stuck in this part
Categories
Find more on Axis Labels in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!