How to plot (x,y) subjected to any function.

1 Ansicht (letzte 30 Tage)
Anshuman S
Anshuman S am 19 Dez. 2017
Kommentiert: Walter Roberson am 19 Dez. 2017
How to plot (x,y) subjected to the equation cot(y) - cot(x) = 1.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 19 Dez. 2017
fimplicit(@(x,y) cot(y)-cot(x)-1)
  2 Kommentare
Anshuman S
Anshuman S am 19 Dez. 2017
will this give the results in degrees ? for x and y
Walter Roberson
Walter Roberson am 19 Dez. 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])

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by