Index exceed number of array elements(1)

1 回表示 (過去 30 日間)
Alexandra Philip
Alexandra Philip 2020 年 7 月 2 日
編集済み: Alexandra Philip 2020 年 7 月 6 日
I am having some trouble as I recieve this error message:
Index exceeds the number of array elements (1).
Error in ERRORT (line 6)
yearstr=Teststr(7:10);
I am also having trouble to ensuring that for both of the if statements have conditions that if the value is left blank it results in the message and also if the month or year is not a number results in the presented message.
Any suggestions?
  2 件のコメント
the cyclist
the cyclist 2020 年 7 月 2 日
What is the value of Testdate that you used as input, for which you got this error?
Alexandra Philip
Alexandra Philip 2020 年 7 月 2 日
Testdate=input('What is the test date?(dd-mm-yyyy)','s')

サインインしてコメントする。

採用された回答

the cyclist
the cyclist 2020 年 7 月 2 日
In your function, the input is a character array, but you convert it to a string. The expression
Testdate(7:10)
would have pulled out the year, but Teststr is a 1-element string (not a length-10 character array), so you cannot access it like that. So, you either need to pull the year out of the character array:
Teststr(7:10)
or do something like this on the string:
extractAfter(Teststr,6)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by