what's the difference between | and || in matlab??
469 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
what's the difference between | and || in matlab??
0 Commenti
Risposta accettata
Più risposte (1)
Sean de Wolski
il 10 Dic 2014
Modificato: Sean de Wolski
il 10 Dic 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]
Vedere anche
Categorie
Scopri di più su Outputs in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!