Help to understand a strange behaviour
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
WTF is the following: (noticed ocationally)
>> clear
>> sind(30)
ans =
-0.8660
>> whos
Name Size Bytes Class Attributes
ans 1x1 8 double
after restart:
>> sind(30)
ans = 0.5000
(R2010b)
5 commentaires
Réponse acceptée
Jan
le 2 Avr 2012
I asked Google for "Matlab bug sind" and found:
My conclusion: Ask MathWorks for a bugfix of your version. It is easy to insert a workaround as M-file in your toolbox folder:
function Y = sind(X)
Y = sin(X * 0.017453292519943295769236954843959);
0 commentaires
Plus de réponses (2)
Ivan
le 2 Avr 2012
1 commentaire
Jan
le 2 Avr 2012
I agree that such bugs reduce the confidence. Therefore it would be great great great, if MathWorks offers a similar service as most other programs: Automatic download of patchs and bugfixes. Even a dynamically created list of known bugs would be helpful, while the bugs list at http://www.mathworks.com/support/bugreports/ is still too hidden for standard users. In addition it is weak: I do not find a report when I'm searching for "sind" on "all releases". Is it possible that this bug has not been reported?
It seems like this bug is either not reproducible or there is no or a not sufficiently powerful unittest for the elementary functions.
Please contact the technical support. The more votes they get the better for the users and the company.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!