y1=(t1==0)
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
the meaning for this command to generate impulse how it will produce 1 at t1=0
0 comentarios
Respuestas (1)
hosein Javan
el 11 de Ag. de 2020
if "t1" is a vector like this:
t1 = [-2 -1 0 +1 +2]
then "t1==0" is a vector of same size which replaces any non-zero value by zero and any zero value by one:
t1 ==0
[0 0 1 0 0]
0 comentarios
Ver también
Categorías
Más información sobre MATLAB Coder 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!