Follow up questions to original.

2 ビュー (過去 30 日間)
Byronb
Byronb 2016 年 4 月 29 日
回答済み: Ilham Hardy 2016 年 4 月 29 日
Original question: http://au.mathworks.com/matlabcentral/answers/281617-i-am-having-some-issues-calling-a-function-in-a-script-file One more question if you or anyone is still looking at this. In the original function the n number of outputs are arranged so that the index of the first is assigned to 1 on the plot created with my script. However since i'm dealing with populations I need this 'initial' value to be assigned to 0 on the plot. Or in other words, for every y value I have, the x value needs to decrease by 1. So my graph will be translated left 1 unit.

回答 (1 件)

Ilham Hardy
Ilham Hardy 2016 年 4 月 29 日
After you create your plot, create your own x-axis (or y-axis) label using
xticklabel
e.g.
plot(1:4)
grid on
set(gca,'Xtick',1:4,'XTickLabel',{'a', 'b', 'c', 'd'})
Hope that helps

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by