matlab - Where is my mistake and how can i correct it? -


I'm using this code for parameter estimation, it gives me an error in the row below how It is possible. thank you in advanced.

  while dcnorm & gt; 1E-6 & amp; Etter & lt; 10f = A * (B. ^ (C. ^ T)) - Y; Ji1 = b ^ (c ^ t.) Ji2 a * = * (b ^ (c ^ (t -1)). (C ^ t.); % Error Line G3 = A * (B ^ (c. ^ T)) * LN (B) * T * (c. ((T -1) ^); J = [Ji1 Ji2 G3]; DC = -J \ f; Tahmin = tahmin + dc; Dcnorm = ideal (DC); ITER + 1 ITER =; A = tahmin (1); B = tahmin (2); C = tahmin (3); D = [IARC ABC Model (F) Model (DC)]  

( Clearly use element-wise actions during the expression):

  g2 = one * (B. ^ (C. ^ (T-1)). * (C. ^ T);  

My guess is that you will also need to modify the next line.


Comments

Popular posts from this blog

eclipse plugin - Run java code error: Workspace is closed -

ios - How do I use CFArrayRef in Swift? -

scala - Play Framework - how to bind form to a session field -