フィルターのクリア

command for which the label on the x axis is not shown

1 回表示 (過去 30 日間)
Locks
Locks 2013 年 5 月 18 日
Hi,
I am looking for a command so that there are no values on the x axis shown.
I tried this;
set(gca,'xtick',[])
but it's not working, any idea
  1 件のコメント
per isakson
per isakson 2013 年 5 月 18 日
Any warning or error message?

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

採用された回答

per isakson
per isakson 2013 年 5 月 18 日
It works here (R2012a)
sdn = [ 1 : 6 ] + 735370;
date_strings = datestr( sdn, 'dd-mmm-yyyy' );
plot( [1:6] )
axh = gca;
set( axh, 'XTickLabel', date_strings )
set( axh, 'XTick', [] )
There are neither ticks nor labels on the x-axis.
  1 件のコメント
per isakson
per isakson 2013 年 5 月 18 日
This example is according to the documentation and it works here.
What could the reason be that it doesn't work for you?
  • you have more than one axes object and the current axes is an "other" axes; not the one you think
Restart Matlab and run this example. I would very surprised it it behaves differently compare to what I see.

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

その他の回答 (2 件)

Walter Roberson
Walter Roberson 2013 年 5 月 18 日
Try
set(gca, 'xticklabel', '')
  1 件のコメント
Locks
Locks 2013 年 5 月 18 日
編集済み: Locks 2013 年 5 月 18 日
that does not work either
dates=datenum(dataSet(:,1));
this does still show some values on the x axis, what am I doing wrong?
%SPX
SPX=dataSet(:,2);
%VIX
VIX=dataSet(:,3);
plotyy(dates,SPX,dates,VIX);
set(gca, 'xticklabel', '')

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


Image Analyst
Image Analyst 2013 年 5 月 18 日
Like I said in your duplicate question:
plot(1:10); % Plot some arbitrary sample data.
set(gca, 'xtick', [-inf inf]); % Turn off x-axis.
  3 件のコメント
Image Analyst
Image Analyst 2013 年 5 月 18 日
Explain why it does not work. It plots something in an axes control "where there are no value displayed on the x axis" just like you asked for.
Give me something we can run:
Undefined variable dataSet.
Error in test3 (line 1)
dates=datenum(dataSet(:,1));
Walter Roberson
Walter Roberson 2013 年 5 月 18 日
What you are missing is that you used plotyy() without mentioning it to us. plotyy() generates two axes, and makes no promises about what gca() will refer to afterwards. You need to save the output of the plotyy() call and use the appropriate axes from what is returned.

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

カテゴリ

Help Center および File ExchangeTwo y-axis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by