tan(x) graph

17 views (last 30 days)
Levent Koman
Levent Koman on 20 Apr 2021
Commented: Stephan on 20 Apr 2021
How to draw this tan(x) graph on matlab.

Accepted Answer

Stephan
Stephan on 20 Apr 2021
Edited: Stephan on 20 Apr 2021
I guess you know that your picture is not a tan function...
fplot(@tan,[0 7],'LineWidth',2)
  3 Comments
Stephan
Stephan on 20 Apr 2021
fplot(@(x)0.5*sin(2*x-pi/2)+0.5,[0 2*pi],'LineWidth',2)
xlim([0 7])
Levent Koman
Levent Koman on 20 Apr 2021
thanx for solution

Sign in to comment.

More Answers (1)

Walter Roberson
Walter Roberson on 20 Apr 2021
syms x
fplot(sin(x)^2,[0 2*pi])
  1 Comment
Stephan
Stephan on 20 Apr 2021
Nice ;-)
syms x
simplify(0.5*sin(2*x-pi/2)+0.5)
ans = 
rewrite(ans,'sin')
ans = 

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!