How to change both the axis value ranges

3 ビュー (過去 30 日間)
Aftab Ahmed Khan
Aftab Ahmed Khan 2014 年 6 月 16 日
編集済み: Sean de Wolski 2014 年 6 月 16 日
Hi everyone,
I have plotted this for my mobile users distribution but i don't know how to change the axis on this figure now as i want them to correspond to distance, like instead of -1 to 1 they should read as 0 to 250 km on both the axes.

採用された回答

Mischa Kim
Mischa Kim 2014 年 6 月 16 日
編集済み: Mischa Kim 2014 年 6 月 16 日
Aftab, you could simply
data_km = 125 * (data + 1);
where data would be your current one ranging from -1 to +1 and assuming a linear translation is justified. Make sure to scale both x- and y-data.
  1 件のコメント
Aftab Ahmed Khan
Aftab Ahmed Khan 2014 年 6 月 16 日
編集済み: Aftab Ahmed Khan 2014 年 6 月 16 日
Hi Mischa, Awesome, why this idea doesn't pop up in my mind. Worked, Cheers.

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

その他の回答 (1 件)

Sean de Wolski
Sean de Wolski 2014 年 6 月 16 日
編集済み: Sean de Wolski 2014 年 6 月 16 日
Set the 'XTick' and 'XTickLabel' manually
sphere
set(gca,'XTick',linspace(-1,1,6))
set(gca,'XTickLabel',cellstr(strcat(num2str((0:50:250).'),' km')))

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by