Effacer les filtres
Effacer les filtres

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

1 vue (au cours des 30 derniers jours)
Alec Carruthers
Alec Carruthers le 11 Avr 2018
Commenté : Alec Carruthers le 11 Avr 2018
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.

Réponses (1)

Star Strider
Star Strider le 11 Avr 2018
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 commentaires
Walter Roberson
Walter Roberson le 11 Avr 2018
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 le 11 Avr 2018
Alright, that is what I was thinking.
Thank You!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by