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

 Accepted Answer

fimplicit(@(x,y) cot(y)-cot(x)-1)

2 Comments

will this give the results in degrees ? for x and y
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])

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!