Subscript assignment mismatch.
이전 댓글 표시
Hi.
I run my code, and get this response:
d =[ 0 0.9539 1.0584 1.1880 0.4512
0.9539 0 0.8293 1.1050 1.0646
1.0584 0.8293 0 0.4785 0.7907
1.1880 1.1050 0.4785 0 0.8752
0.4512 1.0646 0.7907 0.8752 0]
Subscripted assignment dimension mismatch.
Error in geomp (line 105)
d(w,w) = [];
>>
The for loop is as follows:
d
for w=1:5
d(w,w) = [];
end
and as you can se, it displays d, but it is not deleting d(1,1), d(2,2) etc.
I have run ismatrix(d) (and gotten 1) as well as size(d), which is 5 5
Whats going on here?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 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!