필터 지우기
필터 지우기

How to fix "Subscripted assignment dimension mismatch," in a for loop?

조회 수: 1 (최근 30일)
Alec Carruthers
Alec Carruthers 2018년 4월 11일
댓글: Alec Carruthers 2018년 4월 11일
for k=1:length(index)
syms w
W_TO(k) = vpasolve(((C1(k)+C5(k))*(w^1.195))+(C2*(w^.235))+((C3+C4(k)+C6(k)+C7+C10-1)*w)+(C8+C9)==0,w);
end
The error message I get it is: "Subscripted assignment dimension mismatch.
Error in sym/privsubsasgn (line 1107) L_tilde2 = builtin('subsasgn',L_tilde,struct('type','()','subs',{varargin}),R_tilde);
Error in sym/subsasgn (line 944) C = privsubsasgn(L,R,inds{:});
Error in Weight (line 250) W_TO(k) = vpasolve(((C1(k)+C5(k))*(w^1.195))+(C2*(w^.235))+((C3+C4(k)+C6(k)+C7+C10-1)*w)+(C8+C9)==0,w);"
For each k value, I should be getting one value for W_TO. My guess is that there is no analytical solution to this expression. I would appreciate the advice anyone can give on fixing this issue.

답변 (1개)

Star Strider
Star Strider 2018년 4월 11일
I cannot run your code because I do not have the constants.
Your guess may be correct. However saving ‘W_TO’ as a cell array instead may at least prevent the error your code is currently throwing:
W_TO{k} = vpasolve(((C1(k)+C5(k))*(w^1.195))+(C2*(w^.235))+((C3+C4(k)+C6(k)+C7+C10-1)*w)+(C8+C9)==0,w);
You can sort out any multiple results for each ‘k’ iteration after the loop completes.
  댓글 수: 3
Walter Roberson
Walter Roberson 2018년 4월 11일
MATLAB was not able to find numeric solutions for those three cases. Possibly they do not exist, or possibly it is just too hard for MATLAB.
Alec Carruthers
Alec Carruthers 2018년 4월 11일
Alright, that is what I was thinking.
Thank You!

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by