フィルターのクリア

How to assign a reference point in graph?

1 回表示 (過去 30 日間)
LAKSHMANAN ADAIKKAPPAN
LAKSHMANAN ADAIKKAPPAN 2016 年 4 月 6 日
編集済み: Walter Roberson 2016 年 4 月 7 日
how to assign reference point(0,0) at left top corner like following figure?

採用された回答

Walter Roberson
Walter Roberson 2016 年 4 月 6 日
plot(rand(1,30))
set(gca,'YDir', 'reverse')
  3 件のコメント
Muhammad Usman Saleem
Muhammad Usman Saleem 2016 年 4 月 6 日
have you check output of this code? @LAKSHMANAN ADAIKKAPPAN
Walter Roberson
Walter Roberson 2016 年 4 月 7 日
編集済み: Walter Roberson 2016 年 4 月 7 日
Certainly I have checked the output of the code. If you prefer to see the full 0 to 14 and 0 to 16, change the graph to use that, such as
plot(0:16, 14 * rand(1,17))
and you might want to set the axis location as well,
set(gca, 'ydir', 'reverse', 'xaxislocation', 'top')
This could be taken further to get rid of the tick marks but leave the tick labels. The ease of doing that would depend upon the MATLAB version being used.

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

その他の回答 (2 件)

Muhammad Usman Saleem
Muhammad Usman Saleem 2016 年 4 月 6 日
編集済み: Muhammad Usman Saleem 2016 年 4 月 6 日
UPDATE 1:
may try this
plot(1:10)
box off
axes('xlim', [1 10], 'ylim', [1 10], 'color', 'none', 'YAxisLocation', 'right', 'XAxisLocation', 'top')
for reading read here
or may try this
t=0:0.1:10;
y=sin(t);
plot(t,y)
set(gca,'XAxisLocation','top','YAxisLocation','left','ydir','reverse');
  3 件のコメント
Walter Roberson
Walter Roberson 2016 年 4 月 6 日
No, the key is YDir reverse
LAKSHMANAN ADAIKKAPPAN
LAKSHMANAN ADAIKKAPPAN 2016 年 4 月 6 日
編集済み: LAKSHMANAN ADAIKKAPPAN 2016 年 4 月 6 日
Thank you for your guidance sir. It will work.

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


Steven Lord
Steven Lord 2016 年 4 月 6 日
plot(1:10, 1:10);
axis ij
Or if you have the handle of your axes object already, change its YDir property to 'reverse' as Walter showed.
  1 件のコメント
LAKSHMANAN ADAIKKAPPAN
LAKSHMANAN ADAIKKAPPAN 2016 年 4 月 6 日
Thank you for your guidance sir. It will also work.

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

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by