Simple question, how can I plot this tan x function?

20 visualizaciones (últimos 30 días)
Stephanie Ruiz
Stephanie Ruiz el 23 de Mayo de 2021
Respondida: Star Strider el 23 de Mayo de 2021
I want to be able to plot the following equation into matlab and be able to graph it, but I'm not sure how to do it.
- x = - tan (y)
How would I go about this?

Respuesta aceptada

Star Strider
Star Strider el 23 de Mayo de 2021
Perhaps —
x = @(y) tan(y)
x = function_handle with value:
@(y)tan(y)
figure
fplot(x, [-pi pi])
grid
xticks([-pi -pi/2 0 pi/2 pi])
set(gca, 'XTickLabel',{'$-\pi$', '$-\frac{\pi}{2}$' '$0$' '$\frac{\pi}{2}$' '$\pi$'}, 'TickLabelInterpreter','latex', 'FontSize',12)
.

Más respuestas (0)

Categorías

Más información sobre Graph and Network Algorithms en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by