How to solve the error 'Row index exceeds table dimensions'

조회 수: 69 (최근 30일)
Hi,
I am trying to plot a graph in matlab by using simple code but it shows me 'Row Index exceeds table dimensions'.
Please see the error message below:
Please see the snapshot of my table:
Please advise
Thanks

채택된 답변

Cris LaPierre
Cris LaPierre 2021년 3월 27일
편집: Cris LaPierre 2021년 3월 27일
You haven't shown us the size of your table, which would be helpful given the error message you are getting. My suspicion is that, in MATLAB, your table does not have 3843 rows. Based on your indexing, and the fact you used readtable, I suspect if you use 1:3842, your code will work. If that is the case, then you can just use a colon instead to indicate all rows.
f{:,8:11};
f{:,4:7};
  댓글 수: 5

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

추가 답변 (1개)

drummer
drummer 2021년 3월 27일
What are the dimensions of your f table if you
size(f)
?

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by