Bugs in the new update
Afficher commentaires plus anciens
Hi,
I've been experiencing bugs in the 2016a update of Matlab. When I open and run a certain script, which worked fine in the previous edition, I keep getting errors that I'm using undeclared variables such as '%U23' and '%U440'. I keep adding code to clear these in the top, however, it just keeps adding these random variables every I open the program. Let me know if you have any suggestions on a solution to my problem!
Thanks in advance,
Isabelle
1 commentaire
Walter Roberson
le 14 Juin 2016
Please post the script and an exact copy of one of the error messages.
Which language edition of MATLAB are you using? Is any of your code written using non-English characters ?
Réponse acceptée
Plus de réponses (2)
Andreas Goser
le 14 Juin 2016
0 votes
As th "%" is for comments, I wonder if you are talking about MATLAB code in the first place. But as Walter said, the more specifc, the better.
In general, please make sure bugs are reported to MathWorks support. Even if you get workarounds in this user forum, it is important to makes sure MathWorks Development consistenly knows about bugs.
6 commentaires
Isabelle agostini
le 14 Juin 2016
Modifié(e) : Stephen23
le 14 Juin 2016
Adam
le 14 Juin 2016
What are you trying to achieve with this line?
clear '%U3c';
I'm not familiar with Simulink so maybe it behaves very differently, but in standard Matlab clear is for clearing variables. It doesn't make any sense to basically clear an in-place string.
Walter Roberson
le 14 Juin 2016
clear('%U3c') would make more sense -- if you could have a variable with that name at all. But it looks to me more like it would be a unicode escape sequence, perhaps even a modification of "percent encoding"
Guillaume
le 14 Juin 2016
If the file is opened in a text editor other than matlab, do the weird characters also show up?
Isabelle agostini
le 14 Juin 2016
Guillaume
le 14 Juin 2016
As per Walter's earlier comment please post the entire error message that get displayed, not your interpretation of it.
Also, what is the output of
who
Isabelle agostini
le 16 Juin 2016
0 votes
2 commentaires
Steven Lord
le 16 Juin 2016
Use the "Contact Us" link in the upper-right corner of this page.
Walter Roberson
le 16 Juin 2016
I think it likely that the file is corrupted or being read as if it is corrupted, and that the % notation is encoding of characters and not actually present anywhere.
Catégories
En savoir plus sur Naming Conventions dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!