why do I get this error?

1 回表示 (過去 30 日間)
flashpode
flashpode 2021 年 9 月 16 日
コメント済み: Image Analyst 2021 年 9 月 16 日
Hey Thats the code I put and the error:
time1 = AIS1(:,end-4:end)
Index in position 2 is invalid. Array indices must be positive integers or logical values.
Could anybody tell me why?

採用された回答

Image Analyst
Image Analyst 2021 年 9 月 16 日
AIS1 has 4 or fewer columns.
s = size(AIS1)
  4 件のコメント
flashpode
flashpode 2021 年 9 月 16 日
Ah, okay. What I posted was to get the last four digits of each row of the string
Image Analyst
Image Analyst 2021 年 9 月 16 日
If AIS1 is a simple string or character array, you'd do AIS1(end-4:end). If it's an array of strings, say 100 of them, and you wanted only the last 4 characters off each of them in a new 100 element long string where each string is only 4 characters one way is to do this:
% Make an array of strings.
AIS1 = ["1234567", "123456789"]
for k = 1 : numel(AIS1)
% Get this string as a character array.
thisString = char(AIS1(k));
% Get the last 4 characters of this string
% and put into the k'th cell of a cell array.
last4{k} = thisString(end-4:end);
end
% last4 is a cell array where each cell is a character array.
% Convert to a string array if desired:
last4 = string(last4)

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by