Understanding the conditional output beginning with (t == 0 | v == 0)
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Vincent Ike
el 26 de Jul. de 2022
Comentada: Vincent Ike
el 29 de Mayo de 2024
Upon integrating a time dependent variable, an exerpt to my solution contains the following: (t == 0 | v == 0) & m ~= n & m + n ~= 0 & 0<= v*t, the solution... I seem to understand every other thing except for this (t == 0 | v == 0). I need an explanation to (t == 0 | v == 0) please. Thank you.
0 comentarios
Respuesta aceptada
David Hill
el 26 de Jul. de 2022
logical (t==0 or v==0)
t=randi(5,1,20)-1
v=randi(5,1,20)-1
idx=(t==0|v==0)
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!