How to plot (x,y) subjected to any function.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Anshuman S
il 19 Dic 2017
Commentato: Walter Roberson
il 19 Dic 2017
How to plot (x,y) subjected to the equation cot(y) - cot(x) = 1.
0 Commenti
Risposta accettata
Walter Roberson
il 19 Dic 2017
fimplicit(@(x,y) cot(y)-cot(x)-1)
2 Commenti
Walter Roberson
il 19 Dic 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])
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Line Plots in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!