Limit plot's x-axis to number of rows in a specified vector

3 次查看(过去 30 天)
Hello All,
I've got an easy one for you:
I want to limit the x-axis on a plot from 0 to the total number of rows in the "A" vector. Code so far is:
xlim(0, ______ );
I'm going to file this one in the too-fried-at-the-moment category.

采纳的回答

Star Strider
Star Strider 2016-12-21
编辑:Star Strider 2016-12-21
Assuming you’re plotting by indices:
axis([0 length(A) ylim])
or:
set(gca, 'XLim',[0 length(A)])
If you want to use the last value in ‘A’, replace ‘length(A)’ with ‘A(end)’ in those function calls.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by