tan(x) graph

19 visualizzazioni (ultimi 30 giorni)
Levent Koman
Levent Koman il 20 Apr 2021
Commentato: Stephan il 20 Apr 2021
How to draw this tan(x) graph on matlab.

Risposta accettata

Stephan
Stephan il 20 Apr 2021
Modificato: Stephan il 20 Apr 2021
I guess you know that your picture is not a tan function...
fplot(@tan,[0 7],'LineWidth',2)
  3 Commenti
Stephan
Stephan il 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 il 20 Apr 2021
thanx for solution

Accedi per commentare.

Più risposte (1)

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

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by