Negative squareroot quick and easy
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I just need a quick and easy way to say The square root of xxxx is yyyyi so the square root of -100 is etc...
B = sqrt® ;
disp(B);
D = sprintf('R is negative. The square root of %1.1f is %1.1fi',R,B)
For some reason it says B is 0 for any number thats negative.
0 commentaires
Réponse acceptée
Robert
le 10 Mar 2016
sprint is taking the real part of your complex result. Try:
sprintf('R is negative. The square root of %1.1f is %1.1fi',R,imag(B))
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Function Creation 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!