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

Levent Koman
Levent Koman on 20 Apr 2021
I know tan(x) function, but how can I draw my graph?
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)

syms x
fplot(sin(x)^2,[0 2*pi])

1 Comment

Nice ;-)
syms x
simplify(0.5*sin(2*x-pi/2)+0.5)
ans = 
rewrite(ans,'sin')
ans = 

Sign in to comment.

Asked:

on 20 Apr 2021

Commented:

on 20 Apr 2021

Community Treasure Hunt

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

Start Hunting!