How to plot (x,y) subjected to any function.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Anshuman S
le 19 Déc 2017
Commenté : Walter Roberson
le 19 Déc 2017
How to plot (x,y) subjected to the equation cot(y) - cot(x) = 1.
0 commentaires
Réponse acceptée
Walter Roberson
le 19 Déc 2017
fimplicit(@(x,y) cot(y)-cot(x)-1)
2 commentaires
Walter Roberson
le 19 Déc 2017
No it will not. cot() is for radians. If you want degrees you should have specified cotd()
fimplicit(@(x,y) cotd(y) - cotd(x) - 1, [-720 720 -720 720])
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Line Plots 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!