Borrar filtros
Borrar filtros

How can I represent this equation on MATLAB

1 visualización (últimos 30 días)
Ibrahim swidan
Ibrahim swidan el 28 de Abr. de 2022
Respondida: KSSV el 28 de Abr. de 2022
How can I represent this equation on MATLAB
𝑥(𝑡) = 7 𝑐𝑜𝑠 (3𝜋𝑡) 𝑤ℎ𝑒𝑟𝑒 0≤𝑡≤4

Respuesta aceptada

KSSV
KSSV el 28 de Abr. de 2022
Extend the example to your case.
n = 100 ;
t = linspace(0,4,n) ;
x = 2*sin(3*pi*t) ;
plot(t,x)

Más respuestas (0)

Categorías

Más información sobre Mathematics 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