xlim is not working

조회 수: 60 (최근 30일)
Chang seok Ma
Chang seok Ma 2021년 12월 3일
댓글: Ajay S 2022년 12월 26일
Hello,
I am trying to use xlim to limit my x-axis
h_to_plot = linspace(1,20,20);
horizon = 1:1:20;
quant = 1.64;
mat = [coefficients ses [1:1:20]'];
[~,idx] = sort(mat(:,1));
sortedmat = mat(idx,:);
figure(3)
errorbar(horizon(h_to_plot),sortedmat(h_to_plot,1),quant*sortedmat(h_to_plot,2),'o','Linewidth',2)
hold on
xlim = ([0 20.5])
However, I could not make x-axis starts from 0 to 20.5
Is there any way I could use xlim to extend my x axis to 20.5?
Thanks

채택된 답변

VBBV
VBBV 2021년 12월 3일
xlim([0 20.5]) % difference
Difference in using and = between the xlim and parenthesis
  댓글 수: 1
Ajay S
Ajay S 2022년 12월 26일
bruh can you please make it a bit more clear

댓글을 달려면 로그인하십시오.

추가 답변 (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