Output shape inconsistent when indexing with empty vector
이전 댓글 표시
I am working with code that maintains three lists -- two exist in the same matrix and one is separate:
twoLists = 1:9;
twoLists = [twoLists' 2*twoLists'];
singleList = (1:9)';
I then index into these lists as follows:
entries = [1;2];
first = twoLists(entries, 1);
second = twoLists(entries, 2);
xponding = singleList(entries);
This is all well and good until 'entries' is empty and both sets of lists only contain one entry:
twoLists = [1 1];
singleList = [2];
entries = ones(1, 0);
first = twoLists(entries, 1);
second = twoLists(entries, 2);
xponding = singleList(entries);
In this case, the shape of 'xponding' doesn't match 'first' and 'second'. I could fix the problem by indexing into singleList like:
singleList(entries, 1);
but I was wondering if there was a better way to solve the problem / elminate it entirely, since it would be a pain to index like this for the whole function.
댓글 수: 1
madhan ravi
2019년 7월 17일
show how your desired result should look like
답변 (1개)
Nikhil Sonavane
2019년 8월 2일
You are encountering the undesired output because of the following line in the code-
entries = ones(1, 0);
Indexing matrices in MATLAB should always be done using positive integers. I suggest you to always start indexing all the matrices from 1 and not zero as you tried it in your first example. In your second example you are creating a matrix with dimensions 1x0 and later assessing another matrix using the previous matrix which has undefined dimensions.
카테고리
도움말 센터 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!