What does X = max(0,A) mean?
93 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Maroco Sc
il 16 Nov 2019
Commentato: Maroco Sc
il 16 Nov 2019
What does X = max(0,A) mean?
0 Commenti
Risposta accettata
JESUS DAVID ARIZA ROYETH
il 16 Nov 2019
it means that some value less than 0 in matrix A will be replaced by 0 in order to have a matrix whose minimum value is 0, example:
max (0, [1 2; -5 5])
returns [1,2; 0 5]
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!