How can I get rid of Title and x-label parts by default?
52 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi friends
I generate plots using ezplot. I changed some Default properties like Linewidth, Linecolor, Fontsize, .... using some codes as follows:
set(0, 'DefaultAxesFontSize', 20); set(0, 'DefaultAxesFontName', 'Cambria'); set(0, 'DefaultAxesFontWeight', 'Bold'); set(0, 'DefaultAxesLineWidth', 2);
But, I can not get rid of "Title" and "x-label" that appear by default. Please help me to get rid of them.
please see attached picture. (I don't know why there is no attach button!!!).
2 Kommentare
Antworten (1)
Adam
am 10 Apr. 2017
Use
doc fplot
instead. It has neither of these by default and is recommended by the help to use instead of ezplot (at least in my R2017a version anyway and fplot has been in Matlab since before R2006a)
3 Kommentare
Adam
am 10 Apr. 2017
fplot(V2, [0 3.5 -0.05 1.05], 'LineWidth', 2);
will deal with the line width.
For the range I don't know what V2 is, but if I do:
figure; fplot( @(x) sin(x), [-0.05 1.05] )
I get the range [-0.05 1.05] as expected.
Siehe auch
Kategorien
Mehr zu Calculus finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!