フィルターのクリア

How can I get rid of Title and x-label parts by default?

75 ビュー (過去 30 日間)
Moein
Moein 2017 年 4 月 10 日
コメント済み: Aishwarya Rao 2021 年 11 月 29 日
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!!!).
  1 件のコメント
Aishwarya Rao
Aishwarya Rao 2021 年 11 月 29 日
You can simply try
title('')
to override the existing.

サインインしてコメントする。

回答 (1 件)

Adam
Adam 2017 年 4 月 10 日
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 件のコメント
Adam
Adam 2017 年 4 月 10 日
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.
Moein
Moein 2017 年 4 月 10 日
thank you dear Adam
about linewidth, I said I wanna generate figures with appropriate linewidth by default, not by adding code after fplot.
about the range, the appropriate range is [0 3.5 -0.05 1.05] that includes [0 3.5] as x-range (horizontal axis) and [-0.05 1.05] as V2-range (vertical axis) but in your case [-0.05 1.05] is x-range. For more details, when I use [0 3.5 -0.05 1.05] the range [0 3.5] applies for x-range correctly but the range [-0.05 1.05] does not appear while it works correctly for ezplot.
Is there any way to hide these properties for the same ezplot? any way similar to: set(0, 'Default.............', ------------);

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeCombine Multiple Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by