how can I plot y = (cos(t-2)/4)(rect(t+1)/6 )?

4 visualizaciones (últimos 30 días)
SaiRevan Potharaju
SaiRevan Potharaju el 3 de Ag. de 2022
Editada: Jan el 3 de Ag. de 2022
y = [(1-cos(0.25*(t-2).^2))*rect(t+1,6)]
is it correct way to write tht code ?
  1 comentario
Jan
Jan el 3 de Ag. de 2022
Editada: Jan el 3 de Ag. de 2022
The brackets [ and ] are the concatenation operator in Matlab. What do you concatenate?
The shown code does not allow to plot anything, so how could it be correct?
What is "rect"? Why do you convert "rect(t+1)/6" to "rect(t+1,6)" ?
"cos(t-2)/4" differs from "1-cos(0.25*(t-2).^2)" also. Very strange.

Iniciar sesión para comentar.

Respuestas (2)

Adam Danz
Adam Danz el 3 de Ag. de 2022
is it correct way to write tht code ?
The line of code looks functional without knowing any other details including what rect is.
how can I plot y = (cos(t-2)/4)(rect(t+1)/6 )?
Define t, compute y, and plot(t,y)

Jan
Jan el 3 de Ag. de 2022
y = @(t) cos(t-2) / 4 .* rect(t + 1) / 6;
fplot(y)

Categorías

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