Respuesta aceptada

madhan ravi
madhan ravi el 22 de Jul. de 2018
Editada: madhan ravi el 22 de Jul. de 2018
syms t
ezplot(exp(-0.3237*t)*cos(3.4836*t))

Más respuestas (1)

Image Analyst
Image Analyst el 22 de Jul. de 2018
Try this:
t = linspace(-5, 7, 200);
y = exp(-0.3237 .* t) .* cos(3.4836 * t);
plot(t, y, 'b.-', 'LineWidth', 2, 'MarkerSize', 15);
grid on;
title('y vs. t', 'FontSize', fontSize);
xlabel('t', 'FontSize', fontSize);
ylabel('y', 'FontSize', fontSize);
ax = gca;
ax.YAxisLocation = 'origin';
ax.XAxisLocation = 'origin';

Categorías

Más información sobre Mathematics en Centro de ayuda y File Exchange.

Productos

Versión

R2018a

Preguntada:

el 22 de Jul. de 2018

Comentada:

el 11 de Oct. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by