필터 지우기
필터 지우기

index must be a positive integer or logical

조회 수: 1 (최근 30일)
sabrina
sabrina 2014년 5월 18일
답변: Mischa Kim 2014년 5월 18일
Hi, Please how to solve this problem : "Attempted to access f(0); index must be a positive integer or logical" thnks

채택된 답변

Mischa Kim
Mischa Kim 2014년 5월 18일
Sabrina, difficult to say without seeing the code. However, in MATLAB indexing starts with 1, not 0:
>> a = [4 3 2 1]
a =
4 3 2 1
>> a(0)
Subscript indices must either be real positive integers or logicals.
>> a(1)
ans =
4

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by