how to fix Index exceeds matrix dimensions ?

2 ビュー (過去 30 日間)
ElizabethR
ElizabethR 2016 年 5 月 7 日
編集済み: ElizabethR 2016 年 5 月 7 日
for i=1:jumlah
filename=strcat('C:\Users\Documents\MATLAB\data\dataujiKW\',num2str(i),'.jpg');
image=imread(filename);
value=cast(extraction(image),'single'); %extraction is a function
counter=counter+1;
result{counter,1}=image;
for i=1:9
result{counter,i+1}=extraction(i);
end
hasilesktraksi=[result{i,2:10}]; // error
end
but, if i run in command window with command : hasilesktraksi=[hasiluji{1,2:10}], it not error and give the result. help please, thanks
  4 件のコメント
Image Analyst
Image Analyst 2016 年 5 月 7 日
I tried, below. Did you even see my answer below???
ElizabethR
ElizabethR 2016 年 5 月 7 日
編集済み: ElizabethR 2016 年 5 月 7 日
yes, i've seen your answare below. thank you ^^

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

採用された回答

Image Analyst
Image Analyst 2016 年 5 月 7 日
Looks like you're confused by cell arrays and concatenation. Instead of this:
hasilesktraksi=[result{i,2:10}]; // error
try this:
hasilesktraksi = extraction(1:9);
It's the same thing but avoiding using confusing cell arrays.
  1 件のコメント
ElizabethR
ElizabethR 2016 年 5 月 7 日
yes, you're right. thanks for explanation and reference. God Bless ^^

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

その他の回答 (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