Triangle, sawtooth plot

18 visualizaciones (últimos 30 días)
Ruslanas Kryzanauskas
Ruslanas Kryzanauskas el 11 de Dic. de 2022
Comentada: Ruslanas Kryzanauskas el 11 de Dic. de 2022
Hello, how to write these formulas in screenshot for plotting. As I understand I have to get triangle and sawtooth wave plots, but i am not getting that: The code I use:
f = 1
t=0:0.01:5;
y = 4|F*t-[floor(F*t+1/2)]|-1;
plot(t,y)
f = 0.2
t=0:0.01:5;
y = 2*((F*t))%1/2))f-1;
plot(t,y)

Respuesta aceptada

VBBV
VBBV el 11 de Dic. de 2022
f = 1
f = 1
t=0:0.01:5;
y = 4*abs(f*t-[floor(f*t+1/2)])-1;
plot(t,y)
f = 0.2
f = 0.2000
t= 0:0.01:5;
y = 2*(mod((f*t),1/2))*f - 1;
plot(t,y,'linewidth',2);

Más respuestas (0)

Categorías

Más información sobre Simulink en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by