what's the difference between | and || in matlab??
568 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Más respuestas (1)
Sean de Wolski
el 10 de Dic. de 2014
Editada: Sean de Wolski
el 10 de Dic. de 2014
| applies to each element in the array, || applies to a scalar condition:
[1 0 1] | [ 0 0 1]
v.
[1 0 1] || [ 0 0 1]
Ver también
Categorías
Más información sobre Outputs en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!