Why do I get the error "Expected index to be positive" on line 3?
5 ビュー (過去 30 日間)
古いコメントを表示
When running these lines, I am geting the error "Expected index to be positive." and cannot figure out why.
vfull = VideoReader('LLZO0024-04-21-24.MP4');
%specific sections to read
section1 = read(vfull,[0 5]);
section2 = read(vfull,[10 15]);
section3 = read(vfull,[20 25]);
0 件のコメント
回答 (1 件)
Kunal Kandhari
2021 年 6 月 22 日
It is because indexing in matlab starts from 1 and not from 0
Changing line 3 to this:
section1 = read(vfull,[1 5]);
will solve this error
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!